python dataframe index 两维_python – Pandas:使用MultiIndex将DataFrame转换为dict

另一个新手熊猫问题.我想将DataFrame转换为字典,但其方式与DataFrame.to_dict()函数提供的方式不同.按示例说明:

df = pd.DataFrame({'co':['DE','DE','FR','FR'],

'tp':['Lake','Forest','Lake','Forest'],

'area':[10,20,30,40],

'count':[7,5,2,3]})

df = df.set_index(['co','tp'])

之前:

area count

co tp

DE Lake 10 7

Forest 20 5

FR Lake 30 2

Forest 40 3

后:

{('DE', 'Lake', 'area'): 10,

('DE', 'Lake', 'count'): 7,

('DE', 'Forest', 'area'): 20,

...

('FR', 'Forest', 'count'): 3 }

dict键应该是由索引行列标题组成的元组,而dict值应该是单独的DataFrame值.对于上面的例子,我设法找到了这个表达式:

after = {(r[0],r[1],c):df.ix[r,c] for c in df.columns for r in df.index}

如何推广此代码以适用于具有N级(而不是2级)的MultiIndices?

回答

感谢DSM’s answer,我发现我实际上只需要使用元组连接r(c,),我上面的二维循环变为N维:

after = {r + (c,): df.ix[r,c] for c in df.columns for r in df.index}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值