📅  最后修改于: 2023-12-03 14:46:22.752000             🧑  作者: Mango
在Pandas中,Period
对象是一种用于表示时间周期的数据类型。Period.freq
是一个属性,用于获取时间周期的频率或间隔。
Period.freq
返回一个字符串,表示时间周期的频率或间隔。
import pandas as pd
p = pd.Period('2021-10-01', freq='D')
print(p.freq)
# 输出结果为 'D'
Period.freq
属性返回一个字符串,表示时间周期的频率或间隔。频率可以是年('A')、季度('Q')、月('M')、周('W')、天('D')、小时('H')、分钟('T'或'MIN')、秒('S')等。
在示例中,p
被创建为一个每天的Period
对象。通过访问p.freq
属性,我们获取到了'D',表示该Period
对象的频率为每天。
Period.freq
属性返回一个字符串,表示时间周期的频率或间隔。以上就是关于Python | Pandas Period.freq
的介绍。
参考链接:https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Period.freq.html