python中dataframe中的xs怎么使用-kb88凯时官网登录

时间:2023-05-26
阅读:
免费资源网 - https://freexyz.cn/

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

数据集如下展示:

一、取one行

使用df.loc[‘one’]

使用df.xs(‘one’)

二、取one行的1行数据

用df.xs(('one', 1))

loc的方法

三、xs也可以用于列索引

免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图