热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

python删除数据框某一列_python从MultiIndexPandas数据框中删除一列

我一直在尝试了解熊猫的多索引方法.我正在尝试删除“std”子列,但徒劳无功.如何才能做到这一点?attributeattribute2\test1stdtest2dc

我一直在尝试了解熊猫的多索引方法.我正在尝试删除“ 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



推荐阅读
author-avatar
zc43pml
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有