當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。