用法:
Series.dt.month_name(*args, **kwargs)
返回具有指定语言环境的 DateTimeIndex 的月份名称。
- locale:str,可选
确定返回月份名称的语言的区域设置。默认为英语语言环境。
- index
月份名称索引。
参数:
返回:
例子:
>>> idx = pd.date_range(start='2018-01', freq='M', periods=3) >>> idx DatetimeIndex(['2018-01-31', '2018-02-28', '2018-03-31'], dtype='datetime64[ns]', freq='M') >>> idx.month_name() Index(['January', 'February', 'March'], dtype='object')
相关用法
- Python pandas.Series.dt.month用法及代码示例
- Python pandas.Series.dt.microsecond用法及代码示例
- Python pandas.Series.dt.minute用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.dt.weekday用法及代码示例
- Python pandas.Series.dt.to_pydatetime用法及代码示例
- Python pandas.Series.dt.second用法及代码示例
- Python pandas.Series.dt.tz_localize用法及代码示例
- Python pandas.Series.dt.is_leap_year用法及代码示例
- Python pandas.Series.dt.is_quarter_start用法及代码示例
- Python pandas.Series.dt.tz_convert用法及代码示例
- Python pandas.Series.dt.round用法及代码示例
- Python pandas.Series.dt.nanosecond用法及代码示例
- Python pandas.Series.dt.to_period用法及代码示例
- Python pandas.Series.dt.ceil用法及代码示例
- Python pandas.Series.dt.hour用法及代码示例
- Python pandas.Series.dt.day用法及代码示例
- Python pandas.Series.dt.is_month_end用法及代码示例
- Python pandas.Series.dt.is_month_start用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.dt.month_name。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。