您需要使用
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 2000Q20 1 51 3 6hd.columns = hd.columns.strftime('%Yq%q')print (hd) 2000q1 2000q20 1 51 3 6
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)