本文簡要介紹
pyspark.pandas.Series.dt.strftime
的用法。用法:
dt.strftime(date_format: str) → ps.Series
使用指定的date_format 轉換為字符串係列。
返回date_format指定的一係列格式化字符串,支持與python標準庫相同的字符串格式。字符串格式的詳細信息可以在 python 字符串格式文檔中找到。
- date_format:str
日期格式字符串(例如:“%%Y-%%m-%%d”)。
- Series
一係列格式化字符串。
參數:
返回:
例子:
>>> series = ps.Series(pd.date_range(pd.Timestamp("2018-03-10 09:00"), ... periods=3, freq='s')) >>> series 0 2018-03-10 09:00:00 1 2018-03-10 09:00:01 2 2018-03-10 09:00:02 dtype: datetime64[ns]
>>> series.dt.strftime('%B %d, %Y, %r') 0 March 10, 2018, 09:00:00 AM 1 March 10, 2018, 09:00:01 AM 2 March 10, 2018, 09:00:02 AM dtype: object
相關用法
- Python pyspark Series.dt.is_quarter_end用法及代碼示例
- Python pyspark Series.dt.is_month_end用法及代碼示例
- Python pyspark Series.dt.floor用法及代碼示例
- 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.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.strftime。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。