本文简要介绍
pyspark.pandas.DatetimeIndex.month_name
的用法。用法:
DatetimeIndex.month_name(locale: Optional[str] = None) → pyspark.pandas.indexes.base.Index
返回具有指定区域设置的 DatetimeIndex 的月份名称。
- locale:str,可选
确定返回月份名称的语言的区域设置。默认为英语语言环境。
- index
月份名称索引。
参数:
返回:
例子:
>>> idx = ps.date_range(start='2018-01', freq='M', periods=3) >>> idx.month_name() Index(['January', 'February', 'March'], dtype='object')
相关用法
- Python pyspark DatetimeIndex.is_month_start用法及代码示例
- Python pyspark DatetimeIndex.normalize用法及代码示例
- 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.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.month_name。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。