当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.Series.dt用法及代码示例


用法:

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

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.dt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。