本文简要介绍
pyspark.pandas.Series.dt.month_name
的用法。用法:
dt.month_name(locale: Optional[str] = None) → ps.Series
返回具有指定语言环境的系列的月份名称。
- locale:str,可选
确定返回月份名称的语言的区域设置。默认为英语语言环境。
- Series
月份名称系列。
参数:
返回:
例子:
>>> series = ps.Series(pd.date_range(start='2018-01', freq='M', periods=3)) >>> series 0 2018-01-31 1 2018-02-28 2 2018-03-31 dtype: datetime64[ns]
>>> series.dt.month_name() 0 January 1 February 2 March 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.strftime用法及代码示例
- Python pyspark Series.dt.is_leap_year用法及代码示例
- Python pyspark Series.dt.is_year_start用法及代码示例
- 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.month_name。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。