dask.dataframe.Series.dt.dayofyear
dask.dataframe.Series.dt.dayofyear¶
- dataframe.Series.dt.dayofyear¶
一年中的第几天。
此文档字符串是从 pandas.core.indexes.accessors.CombinedDatetimelikeProperties.dayofyear 复制的。
Dask 版本可能存在一些不一致性。
示例
对于系列:
>>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"]) >>> s = pd.to_datetime(s) >>> s 0 2020-01-01 10:00:00+00:00 1 2020-02-01 11:00:00+00:00 dtype: datetime64[ns, UTC] >>> s.dt.dayofyear 0 1 1 32 dtype: int32
对于 DatetimeIndex:
>>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00", ... "2/1/2020 11:00:00+00:00"]) >>> idx.dayofyear Index([1, 32], dtype='int32')