cudf.DatetimeIndex.hour#
- property DatetimeIndex.hour[source]#
The hours of the datetime.
Examples
>>> 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 Index([0, 1, 2], dtype='int16')