最佳答案
我有一个多索引数据框架,列‘ A’和‘ B’。
有没有一种方法可以通过对多索引中的一列进行过滤而不将索引重置为单列索引来选择行?
例如。
# has multi-index (A,B)
df
#can I do this? I know this doesn't work because the index is multi-index so I need to specify a tuple
df.ix[df.A ==1]