用法:
DatetimeIndex.floor(freq)
对指定频率的数据进行下限运算。
- 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:59:59", ... "1999-12-31 18:44:59", ... ]) >>> gIndex.floor("T") DatetimeIndex(['2020-05-31 08:59:00', '1999-12-31 18:44: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.ceil用法及代码示例
- 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.floor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。