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

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

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

您需要使用

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5618134.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存