pandas.Timestamp.to_period#
- Timestamp.to_period(freq=None)#
返回一个时间段,这个时间戳是该时间段的一个观察点。
此方法将给定的 Timestamp 转换为一个 Period 对象,该对象表示一段时间,例如一年、一个月等,基于指定的频率。
- 参数:
- freqstr, 可选
周期的频率字符串(例如,’Y’, ‘M’, ‘W’)。默认为 None。
参见
时间戳
表示一个特定的时间戳。
周期
表示一段时间。
to_period
将对象转换为 Period。
示例
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651') >>> # Year end frequency >>> ts.to_period(freq='Y') Period('2020', 'Y-DEC')
>>> # Month end frequency >>> ts.to_period(freq='M') Period('2020-03', 'M')
>>> # Weekly frequency >>> ts.to_period(freq='W') Period('2020-03-09/2020-03-15', 'W-SUN')
>>> # Quarter end frequency >>> ts.to_period(freq='Q') Period('2020Q1', 'Q-DEC')