Pandas 如何根据数据中的日期在dataframe中添加月份列?

Pandas 如何根据数据中的日期在dataframe中添加月份列?,pandas,Pandas,我想按月份列对数据进行分类 例如 日期月份 2009年5月01日 我想每月检查一次结果 在这个表中,我不包括年份,只想保留月份。使用pd.Series.dt.month_name()时,这很简单: 输出 date month 0 2000-01-31 January 1 2000-02-29 February 2 2000-03-31 March 3 2000-04-30 April 4 2000-05-31 May 欢迎来到StackOverflow。为了

我想按月份列对数据进行分类 例如 日期月份 2009年5月01日

我想每月检查一次结果
在这个表中,我不包括年份,只想保留月份。

使用pd.Series.dt.month_name()时,这很简单:

输出

date    month
0   2000-01-31  January
1   2000-02-29  February
2   2000-03-31  March
3   2000-04-30  April
4   2000-05-31  May

欢迎来到StackOverflow。为了更好地帮助您,请尝试添加一些示例数据,以便我们可以看到您正在尝试执行的操作
date    month
0   2000-01-31  January
1   2000-02-29  February
2   2000-03-31  March
3   2000-04-30  April
4   2000-05-31  May