在Pandas DataFrame对象中重新定义索引

在Pandas DataFrame对象中重新定义索引,第1张

在Pandas DataFrame对象中重新定义索引

为什么不简单地使用

set_index
方法

In : col = ['a','b','c']In : data = Dataframe([[1,2,3],[10,11,12],[20,21,22]],columns=col)In : dataOut:    a   b   c0   1   2   31  10  11  122  20  21  22In : data2 = data.set_index('a')In : data2Out:     b   ca1    2   310  11  1220  21  22


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存