用法:
property DatetimeIndex.quarter
日期属于一年中的哪个季度的整数指示符。
一年有4个季度。第一季度为1-3月,第二季度为4-6月,第三季度为7-9月,第四季度为10-12月。
- 整数8索引
- 指示日期属于哪个季度的整数。
返回:
例子:
>>> import cudf >>> gIndex = cudf.DatetimeIndex(["2020-05-31 08:00:00", ... "1999-12-31 18:40:00"]) >>> gIndex.quarter Int8Index([2, 4], dtype='int8')
相关用法
- 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.ceil用法及代码示例
- Python cudf.DatetimeIndex.minute用法及代码示例
- Python cudf.DatetimeIndex.hour用法及代码示例
- Python cudf.DatetimeIndex.month用法及代码示例
- Python cudf.DatetimeIndex.round用法及代码示例
- 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.quarter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。