python删除数据框某一列_python-从MultiIndex Pandas数据框中删除一列

我一直在尝试了解熊猫的多索引方法.我正在尝试删除“ std”子列,但徒劳无功.

如何才能做到这一点?

attribute attribute2 \

test1 std test2

d count type

r1 10 rx 0.559 (0.0) 0.559 (0.0) 0.568 (0.0)

sth1 0.653 (0.004) 0.653 (0.004) 0.679 (0.002)

sth2 0.584 (0.002) 0.584 (0.002) 0.586 (0.003)

sth3 0.651 (0.005) 0.651 (0.005) 0.676 (0

因此,结果数据框应仅包含两个均值列,而不应包含“ std”

非常感谢你.

解决方法:

我认为更好的方法是删除所有带有std的列,即MultiIndex的第二级使用参数级别为1的drop:

print (df)

attribute attribute2 attribute3

test1 std test2 std test3 std

d count type

r1 10 rx 0.559 (0.0) 0.559 (0.0) 0.568 (0.0)

sth1 0.653 (0.004) 0.653 (0.004) 0.679 (0.002)

sth2 0.584 (0.002) 0.584 (0.002) 0.586 (0.003)

sth3 0.651 (0.005) 0.651 (0.005) 0.676 (0)

df = df.drop('std', axis=1, level=1)

print (df)

attribute attribute2 attribute3

test1 test2 test3

d count type

r1 10 rx 0.559 0.559 0.568

sth1 0.653 0.653 0.679

sth2 0.584 0.584 0.586

sth3 0.651 0.651 0.676

标签:pandas,python

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值