用法:
Period.dayofyear
返回一年中的某一天。
此属性返回特定日期发生的一年中的哪一天。返回值的范围是 1 到 365(平年)和 1 到 366(闰年)。
- int
一年中的一天。
返回:
例子:
>>> period = pd.Period("2015-10-23", freq='H') >>> period.day_of_year 296 >>> period = pd.Period("2012-12-31", freq='D') >>> period.day_of_year 366 >>> period = pd.Period("2013-01-01", freq='D') >>> period.day_of_year 1
相关用法
- Python pandas.Period.dayofweek用法及代码示例
- Python pandas.Period.day用法及代码示例
- Python pandas.Period.day_of_week用法及代码示例
- Python pandas.Period.day_of_year用法及代码示例
- Python pandas.Period.days_in_month用法及代码示例
- Python pandas.Period.daysinmonth用法及代码示例
- Python pandas.Period.strftime用法及代码示例
- Python pandas.Period.qyear用法及代码示例
- Python pandas.Period.minute用法及代码示例
- Python pandas.Period.week用法及代码示例
- Python pandas.Period.hour用法及代码示例
- Python pandas.Period.weekday用法及代码示例
- Python pandas.Period.second用法及代码示例
- Python pandas.Period.weekofyear用法及代码示例
- Python pandas.Period.start_time用法及代码示例
- Python pandas.PeriodIndex用法及代码示例
- Python pandas.PeriodIndex.asfreq用法及代码示例
- Python pandas.PeriodIndex.strftime用法及代码示例
- Python pandas.PeriodDtype用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Period.dayofyear。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。