用法:
property Series.dt
系列值的datetime-like 属性的访问器对象。
- 与原始系列一样索引的系列。
- 如果 Series 不包含 datetimelike 值,则 TypeError。
返回:
抛出:
例子:
>>> s = cudf.Series(cudf.date_range( ... start='2001-02-03 12:00:00', ... end='2001-02-03 14:00:00', ... freq='1H')) >>> s.dt.hour 0 12 1 13 dtype: int16 >>> s.dt.second 0 0 1 0 dtype: int16 >>> s.dt.day 0 3 1 3 dtype: int16
相关用法
- Python cudf.Series.data用法及代码示例
- Python cudf.Series.drop_duplicates用法及代码示例
- Python cudf.Series.div用法及代码示例
- Python cudf.Series.diff用法及代码示例
- Python cudf.Series.digitize用法及代码示例
- Python cudf.Series.dropna用法及代码示例
- Python cudf.Series.drop用法及代码示例
- Python cudf.Series.divide用法及代码示例
- Python cudf.Series.dot用法及代码示例
- Python cudf.Series.describe用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.dt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。