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