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


Python cudf.DatetimeIndex.second用法及代碼示例


用法:

property DatetimeIndex.second

日期時間的秒數。

例子

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

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.DatetimeIndex.second。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。