用法:
DatetimeIndex.ceil(freq)
對指定頻率的數據進行ceil操作。
- freq:str
[“D”、“H”、“T”、“min”、“S”、“L”、“ms”、“U”、“us”、“N”]之一。必須是固定頻率,例如“S”(秒)而不是“ME”(月末)。有關這些別名的更多詳細信息,請參見frequency aliases。
- 日期時間索引
DatetimeIndex 的相同類型的索引
參數:
返回:
例子:
>>> import cudf >>> gIndex = cudf.DatetimeIndex([ ... "2020-05-31 08:05:42", ... "1999-12-31 18:40:30", ... ]) >>> gIndex.ceil("T") DatetimeIndex(['2020-05-31 08:06:00', '1999-12-31 18:41:00'], dtype='datetime64[ns]')
相關用法
- Python cudf.DatetimeIndex.dayofweek用法及代碼示例
- Python cudf.DatetimeIndex.second用法及代碼示例
- Python cudf.DatetimeIndex.weekday用法及代碼示例
- Python cudf.DatetimeIndex.dayofyear用法及代碼示例
- Python cudf.DatetimeIndex.day用法及代碼示例
- Python cudf.DatetimeIndex.year用法及代碼示例
- Python cudf.DatetimeIndex.isocalendar用法及代碼示例
- Python cudf.DatetimeIndex.floor用法及代碼示例
- Python cudf.DatetimeIndex.minute用法及代碼示例
- Python cudf.DatetimeIndex.hour用法及代碼示例
- Python cudf.DatetimeIndex.month用法及代碼示例
- Python cudf.DatetimeIndex.round用法及代碼示例
- Python cudf.DatetimeIndex.quarter用法及代碼示例
- Python cudf.DatetimeIndex.day_of_year用法及代碼示例
- Python cudf.DatetimeIndex用法及代碼示例
- Python cudf.DataFrame.mod用法及代碼示例
- Python cudf.DataFrame.isin用法及代碼示例
- Python cudf.DataFrame.rmul用法及代碼示例
- Python cudf.DataFrame.apply用法及代碼示例
- Python cudf.DataFrame.exp用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.DatetimeIndex.ceil。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。