pandas.PeriodDtype#

class pandas.PeriodDtype(freq)[源代码][源代码]#

用于周期数据的 ExtensionDtype。

这不是一个实际的 numpy dtype,而是一个鸭子类型。

参数:
freqstr 或 DateOffset

这个 PeriodDtype 的频率。

属性

freq

这个 PeriodDtype 的频率对象。

方法

None

例子

>>> pd.PeriodDtype(freq="D")
period[D]
>>> pd.PeriodDtype(freq=pd.offsets.MonthEnd())
period[M]