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


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


用法:

DatetimeIndex.round(freq)

對數據進行舍入運算到指定的頻率。

參數

freqstr

[“D”、“H”、“T”、“min”、“S”、“L”、“ms”、“U”、“us”、“N”]之一。必須是固定頻率,例如“S”(秒)而不是“ME”(月末)。有關這些別名的更多詳細信息,請參見frequency aliases

返回

日期時間索引

包含四舍五入日期時間的索引。

例子

>>> import cudf
>>> dt_idx = cudf.Index([
...     "2001-01-01 00:04:45",
...     "2001-01-01 00:04:58",
...     "2001-01-01 00:05:04",
... ], dtype="datetime64[ns]")
>>> dt_idx
DatetimeIndex(['2001-01-01 00:04:45', '2001-01-01 00:04:58',
               '2001-01-01 00:05:04'],
              dtype='datetime64[ns]')
>>> dt_idx.round('H')
DatetimeIndex(['2001-01-01', '2001-01-01', '2001-01-01'], dtype='datetime64[ns]')
>>> dt_idx.round('T')
DatetimeIndex(['2001-01-01 00:05:00', '2001-01-01 00:05:00', '2001-01-01 00:05:00'], dtype='datetime64[ns]')

相關用法


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