Python Pandas - 创建一个 PeriodIndex 并设置频率
要创建 PeriodIndex,请使用方法。要设置频率,请使用freq参数。pandas.PeriodIndex()
首先,导入所需的库 -
import pandas as pd
创建一个 PeriodIndex 对象。PeriodIndex 是一个不可变的 ndarray,其中包含指示定期时间段的序数值。我们使用“freq”参数设置了频率 -
periodIndex = pd.PeriodIndex(['2021-09-25', '2020-10-30', '2020-11-20'], freq="D")
显示 PeriodIndex 对象 -
print("PeriodIndex...\n", periodIndex)
示例
以下是代码 -
import pandas as pd输出结果# 创建一个 PeriodIndex 对象
# PeriodIndex 是一个不可变的 ndarray,其中包含指示定期时间段的序数值
# We have set the frequency using the "freq" parameter
periodIndex = pd.PeriodIndex(['2021-09-25', '2020-10-30', '2020-11-20'], freq="D")
# 显示 PeriodIndex 对象
print("PeriodIndex...\n", periodIndex)
# 显示来自 PeriodIndex 对象的日期
print("\nThe number of days from the PeriodIndex...\n", periodIndex.day)
这将产生以下代码 -
PeriodIndex...PeriodIndex(['2021-09-25', '2020-10-30', '2020-11-20'], dtype='period[D]')
The number of days from the PeriodIndex...
Int64Index([25, 30, 20], dtype='int64')
以上是 Python Pandas - 创建一个 PeriodIndex 并设置频率 的全部内容, 来源链接: utcz.com/z/327353.html