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怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!