小编典典

将pandas._period.Period类型的列名称转换为小写

python

我有一个带有列名称的数据集“城市”

2000-01,2000-02,2000-03,2000-04,2000-05,......,2010-08,2010-09,2010-10,2010-11,2010-12.

我使用以下代码,并将列名命名为

2000Q1 , 2000Q2, 2000Q3, ......, 2010Q4

在pandas._period.Period数据类型中。

def Problem():
    hd = pd.read_csv('City.csv')
    hd = hd.groupby(pd.PeriodIndex(hd.columns, freq='Q'), axis =1).mean()
    return hd
Problem()

我希望列为

2000q1, 2000q2, 2000q3, ....... ,2010q4

我希望在输出列名称中使用小写字母“ q”。

谢谢。


阅读 232

收藏
2021-01-20

共1个答案

小编典典

您需要使用strftime什么PeriodIndex

hd.columns = hd.columns.strftime('%Yq%q')

样品:

hd = pd.DataFrame({'2000-01':[1,3], '2000-05':[5,6]})
hd = hd.groupby(pd.PeriodIndex(hd.columns, freq='Q'), axis =1).mean()
print (hd)
   2000Q1  2000Q2
0       1       5
1       3       6

hd.columns = hd.columns.strftime('%Yq%q')
print (hd)
   2000q1  2000q2
0       1       5
1       3       6
2021-01-20