标签: python pandas
假设我有一个包含两个整数的MultiIndex,我想选择
where (level=0 in [0,1]) and (level=1 in [0,1])
(也就是说,我想要[[0,0], [0,1], [1,0], [1,1])
[[0,0], [0,1], [1,0], [1,1]
我该怎么做?
.xs([0, 1], level=[0,1])给了我where level=0 in [0] and level=1 in [1],我尝试的其他任何有意义的内容都会导致KeyErrors。
.xs([0, 1], level=[0,1])
where level=0 in [0] and level=1 in [1]
答案 0 :(得分:1)
您可以在0.14.0(即将发布)中执行此操作,请参阅here
rc1是here