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