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


Python cudf.DatetimeIndex.hour用法及代码示例


用法:

property DatetimeIndex.hour

日期时间的小时数。

例子

>>> import pandas as pd
>>> import cudf
>>> datetime_index = cudf.Index(pd.date_range("2000-01-01",
...             periods=3, freq="h"))
>>> datetime_index
DatetimeIndex(['2000-01-01 00:00:00', '2000-01-01 01:00:00',
            '2000-01-01 02:00:00'],
            dtype='datetime64[ns]')
>>> datetime_index.hour
Int16Index([0, 1, 2], dtype='int16')

相关用法


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