使用分层列创建DataFrame

使用分层列创建DataFrame,第1张

使用分层创建DataFrame

这似乎起作用

import pandas as pddata = {'a': [1,2,3,4], 'b': [10,20,30,40],'c': [100,200,300,400]}df = pd.concat({"Estimates": pd.Dataframe(data)}, axis=1, names=["l1", "l2"])l1  Estimates         l2          a   b    c01  10  10012  20  20023  30  30034  40  400


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存