pandas.PeriodDtype #

熊猫类 periodDtype ( freq ) [来源] #

周期数据的 ExtensionDtype。

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

参数
freq str 或 DateOffset

此 periodDtype 的频率。

例子

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

属性

freq

此PeriodDtype 的频率对象。

方法

没有任何