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也可以用于列索引
到此这篇关于Python中DataFrame中的xs用法的文章就介绍到这了,更多相关Python DataFrame xs 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!