用法:
DatetimeProperties.isocalendar()
返回一个 DataFrame,其中包含根据 ISO 8601 标准计算的年、周和日。
- DataFrame
- 带有年、周和日列
返回:
例子:
>>> ser = cudf.Series(pd.date_range(start="2021-07-25", ... end="2021-07-30")) >>> ser.dt.isocalendar() year week day 0 2021 29 7 1 2021 30 1 2 2021 30 2 3 2021 30 3 4 2021 30 4 5 2021 30 5 >>> ser.dt.isocalendar().week 0 29 1 30 2 30 3 30 4 30 5 30 Name: week, dtype: object
>>> serIndex = cudf.to_datetime(pd.Series(["2010-01-01", pd.NaT])) >>> serIndex.dt.isocalendar() year week day 0 2009 53 5 1 <NA> <NA> <NA> >>> serIndex.dt.isocalendar().year 0 2009 1 <NA> Name: year, dtype: object
相关用法
- Python cudf.core.series.DatetimeProperties.month用法及代码示例
- Python cudf.core.series.DatetimeProperties.year用法及代码示例
- Python cudf.core.series.DatetimeProperties.second用法及代码示例
- Python cudf.core.series.DatetimeProperties.dayofweek用法及代码示例
- Python cudf.core.series.DatetimeProperties.hour用法及代码示例
- Python cudf.core.series.DatetimeProperties.ceil用法及代码示例
- Python cudf.core.series.DatetimeProperties.floor用法及代码示例
- Python cudf.core.series.DatetimeProperties.quarter用法及代码示例
- Python cudf.core.series.DatetimeProperties.weekday用法及代码示例
- Python cudf.core.series.DatetimeProperties.day用法及代码示例
- Python cudf.core.series.DatetimeProperties.dayofyear用法及代码示例
- Python cudf.core.series.DatetimeProperties.minute用法及代码示例
- Python cudf.core.series.DatetimeProperties.day_of_year用法及代码示例
- Python cudf.core.series.DatetimeProperties.round用法及代码示例
- Python cudf.core.series.DatetimeProperties.strftime用法及代码示例
- Python cudf.core.series.TimedeltaProperties.microseconds用法及代码示例
- Python cudf.core.series.TimedeltaProperties.components用法及代码示例
- Python cudf.core.series.TimedeltaProperties.days用法及代码示例
- Python cudf.core.series.TimedeltaProperties.seconds用法及代码示例
- Python cudf.core.series.TimedeltaProperties.nanoseconds用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.series.DatetimeProperties.isocalendar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。