pandas.Period.now#

classmethod Period.now(freq)#

返回当前日期的周期。

now 方法提供了一种便捷的方式来生成一个表示当前日期和时间的周期对象。这在金融和经济分析中特别有用,因为数据通常以固定的时间间隔(例如,每小时、每天、每月)收集和分析。通过指定频率,用户可以创建与数据粒度相匹配的周期。

参数:
freqstr, BaseOffset

返回周期使用的频率。

参见

to_datetime

将参数转换为日期时间。

周期

表示一段时间。

Period.to_timestamp

返回 Period 的时间戳表示。

示例

>>> pd.Period.now('h')  
Period('2023-06-12 11:00', 'h')