Python 官方文档:入门教程 => 点击学习
目录一、取one行二、取one行的1行数据三、xs也可以用于列索引xs用于多重索引中,先创立一个二级行索引的dataframe,如下所示: np.arrays = [['one',
xs
用于多重索引中,先创立一个二级行索引的dataframe,如下所示:
np.arrays = [['one', 'one', 'one', 'two', 'two', 'two'], [1, 2, 3, 1, 2, 3]]
df = pd.DataFrame(np.random.randn(6, 2), index = pd.MultiIndex.from_tuples(list(zip(*np.arrays))), columns = ['A', 'B'])
df
数据集如下展示:
使用df.loc[‘one’]
使用df.xs(‘one’)
用df.xs(('one', 1))
用loc
的方法
到此这篇关于python中DataFrame中的xs用法的文章就介绍到这了,更多相关Python DataFrame xs 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Python中DataFrame中的xs用法
本文链接: https://lsjlt.com/news/203025.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0