用法:
property DatetimeIndex.dayofyear
一年中的某一天,非閏年為 1-365,閏年為 1-366。
例子:
>>> import pandas as pd >>> import cudf >>> datetime_index = cudf.Index(pd.date_range("2016-12-31", ... "2017-01-08", freq="D")) >>> datetime_index DatetimeIndex(['2016-12-31', '2017-01-01', '2017-01-02', '2017-01-03', '2017-01-04', '2017-01-05', '2017-01-06', '2017-01-07', '2017-01-08'], dtype='datetime64[ns]') >>> datetime_index.dayofyear Int16Index([366, 1, 2, 3, 4, 5, 6, 7, 8], dtype='int16')
相關用法
- Python cudf.DatetimeIndex.dayofweek用法及代碼示例
- Python cudf.DatetimeIndex.day用法及代碼示例
- Python cudf.DatetimeIndex.day_of_year用法及代碼示例
- Python cudf.DatetimeIndex.second用法及代碼示例
- Python cudf.DatetimeIndex.weekday用法及代碼示例
- Python cudf.DatetimeIndex.year用法及代碼示例
- Python cudf.DatetimeIndex.isocalendar用法及代碼示例
- Python cudf.DatetimeIndex.floor用法及代碼示例
- Python cudf.DatetimeIndex.ceil用法及代碼示例
- Python cudf.DatetimeIndex.minute用法及代碼示例
- Python cudf.DatetimeIndex.hour用法及代碼示例
- Python cudf.DatetimeIndex.month用法及代碼示例
- Python cudf.DatetimeIndex.round用法及代碼示例
- Python cudf.DatetimeIndex.quarter用法及代碼示例
- Python cudf.DatetimeIndex用法及代碼示例
- Python cudf.DataFrame.mod用法及代碼示例
- Python cudf.DataFrame.isin用法及代碼示例
- Python cudf.DataFrame.rmul用法及代碼示例
- Python cudf.DataFrame.apply用法及代碼示例
- Python cudf.DataFrame.exp用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.DatetimeIndex.dayofyear。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。