用法:
DatetimeProperties.round(freq)
对数据进行舍入运算到指定的频率。
- freq:str
[“D”、“H”、“T”、“min”、“S”、“L”、“ms”、“U”、“us”、“N”]之一。必须是固定频率,例如“S”(秒)而不是“ME”(月末)。有关这些别名的更多详细信息,请参见frequency aliases。
- Series
所有时间戳都四舍五入到指定频率的系列。索引被保留。
参数:
返回:
例子:
>>> import cudf >>> dt_sr = cudf.Series([ ... "2001-01-01 00:04:45", ... "2001-01-01 00:04:58", ... "2001-01-01 00:05:04", ... ], dtype="datetime64[ns]") >>> dt_sr.dt.round("T") 0 2001-01-01 00:05:00 1 2001-01-01 00:05:00 2 2001-01-01 00:05:00 dtype: datetime64[ns]
相关用法
- Python cudf.core.series.DatetimeProperties.month用法及代码示例
- Python cudf.core.series.DatetimeProperties.year用法及代码示例
- Python cudf.core.series.DatetimeProperties.second用法及代码示例
- Python cudf.core.series.DatetimeProperties.dayofweek用法及代码示例
- Python cudf.core.series.DatetimeProperties.isocalendar用法及代码示例
- Python cudf.core.series.DatetimeProperties.hour用法及代码示例
- Python cudf.core.series.DatetimeProperties.ceil用法及代码示例
- Python cudf.core.series.DatetimeProperties.floor用法及代码示例
- Python cudf.core.series.DatetimeProperties.quarter用法及代码示例
- Python cudf.core.series.DatetimeProperties.weekday用法及代码示例
- Python cudf.core.series.DatetimeProperties.day用法及代码示例
- Python cudf.core.series.DatetimeProperties.dayofyear用法及代码示例
- Python cudf.core.series.DatetimeProperties.minute用法及代码示例
- Python cudf.core.series.DatetimeProperties.day_of_year用法及代码示例
- Python cudf.core.series.DatetimeProperties.strftime用法及代码示例
- Python cudf.core.series.TimedeltaProperties.microseconds用法及代码示例
- Python cudf.core.series.TimedeltaProperties.components用法及代码示例
- Python cudf.core.series.TimedeltaProperties.days用法及代码示例
- Python cudf.core.series.TimedeltaProperties.seconds用法及代码示例
- Python cudf.core.series.TimedeltaProperties.nanoseconds用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.series.DatetimeProperties.round。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。