本文简要介绍
pyspark.pandas.Series.dt.floor
的用法。用法:
dt.floor(freq: Union[str, pandas._libs.tslibs.offsets.DateOffset], *args: Any, **kwargs: Any) → ps.Series
对指定频率的数据进行下限运算。
- freq:str 或偏移量
将索引设为下限的频率级别。必须是固定频率,例如“S”(秒)而不是“ME”(月末)。
- nonexistent:‘shift_forward’, ‘shift_backward, ‘NaT’, timedelta, 默认 ‘raise’
由于 DST,时钟向前移动的特定时区不存在不存在的时间。
‘shift_forward’ 将不存在的时间向前移动到最接近的存在时间
‘shift_backward’ 将不存在的时间向后移动到最接近的存在时间
‘NaT’将返回NaT,其中不存在时间
timedelta 对象会将不存在的时间移动 timedelta
如果不存在时间,‘raise’将引发NonExistentTimeError
注意
此选项仅适用于 pandas 0.24.0+
- Series
具有相同索引的系列。
- ValueError(如果
freq
无法转换)。
- ValueError(如果
参数:
返回:
抛出:
例子:
>>> series = ps.Series(pd.date_range('1/1/2018 11:59:00', periods=3, freq='min')) >>> series 0 2018-01-01 11:59:00 1 2018-01-01 12:00:00 2 2018-01-01 12:01:00 dtype: datetime64[ns]
>>> series.dt.floor("H") 0 2018-01-01 11:00:00 1 2018-01-01 12:00:00 2 2018-01-01 12:00:00 dtype: datetime64[ns]
相关用法
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dt.is_month_end用法及代码示例
- Python pyspark Series.dt.is_quarter_start用法及代码示例
- Python pyspark Series.dt.day_name用法及代码示例
- Python pyspark Series.dt.dayofweek用法及代码示例
- Python pyspark Series.dt.ceil用法及代码示例
- Python pyspark Series.dt.strftime用法及代码示例
- Python pyspark Series.dt.is_leap_year用法及代码示例
- Python pyspark Series.dt.is_year_start用法及代码示例
- Python pyspark Series.dt.month_name用法及代码示例
- Python pyspark Series.dt.round用法及代码示例
- Python pyspark Series.dt.is_year_end用法及代码示例
- Python pyspark Series.dt.weekday用法及代码示例
- Python pyspark Series.dt.normalize用法及代码示例
- Python pyspark Series.dt.is_month_start用法及代码示例
- Python pyspark Series.dtype用法及代码示例
- Python pyspark Series.dtypes用法及代码示例
- Python pyspark Series.dropna用法及代码示例
- Python pyspark Series.describe用法及代码示例
- Python pyspark Series.diff用法及代码示例
- Python pyspark Series.drop用法及代码示例
- Python pyspark Series.dot用法及代码示例
- Python pyspark Series.drop_duplicates用法及代码示例
- Python pyspark Series.droplevel用法及代码示例
- Python pyspark Series.div用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.dt.floor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。