本文简要介绍
pyspark.pandas.DatetimeIndex.normalize
的用法。用法:
DatetimeIndex.normalize() → pyspark.pandas.indexes.datetimes.DatetimeIndex
将时间转换为午夜。
日期时间的时间部分转换为午夜,即 00:00:00。这在时间无关紧要的情况下很有用。长度不变。时区不受影响。
此方法在具有日期时间值的系列上可用,位于
.dt
访问器下。- DatetimeIndex
与原始数据相同的类型。
返回:
例子:
>>> idx = ps.date_range(start='2014-08-01 10:00', freq='H', periods=3) >>> idx.normalize() DatetimeIndex(['2014-08-01', '2014-08-01', '2014-08-01'], dtype='datetime64[ns]', freq=None)
相关用法
- Python pyspark DatetimeIndex.is_month_start用法及代码示例
- Python pyspark DatetimeIndex.is_month_end用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_start用法及代码示例
- Python pyspark DatetimeIndex.is_quarter_end用法及代码示例
- Python pyspark DatetimeIndex.floor用法及代码示例
- Python pyspark DatetimeIndex.is_year_end用法及代码示例
- Python pyspark DatetimeIndex.is_leap_year用法及代码示例
- Python pyspark DatetimeIndex.indexer_between_time用法及代码示例
- Python pyspark DatetimeIndex.month_name用法及代码示例
- Python pyspark DatetimeIndex.day_name用法及代码示例
- Python pyspark DatetimeIndex.round用法及代码示例
- Python pyspark DatetimeIndex.is_year_start用法及代码示例
- Python pyspark DatetimeIndex.indexer_at_time用法及代码示例
- Python pyspark DatetimeIndex.strftime用法及代码示例
- Python pyspark DatetimeIndex.day_of_week用法及代码示例
- Python pyspark DatetimeIndex.weekday用法及代码示例
- Python pyspark DatetimeIndex.ceil用法及代码示例
- Python pyspark DatetimeIndex.dayofweek用法及代码示例
- Python pyspark DatetimeIndex用法及代码示例
- Python pyspark DataFrame.to_latex用法及代码示例
- Python pyspark DataStreamReader.schema用法及代码示例
- Python pyspark DataFrame.align用法及代码示例
- Python pyspark DataFrame.plot.bar用法及代码示例
- Python pyspark DataFrame.to_delta用法及代码示例
- Python pyspark DataFrame.quantile用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.DatetimeIndex.normalize。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。