Pandas'isin':检索除列索引列表之外的行

时间:2017-12-28 17:02:44

标签: python pandas indexing

我想检索不是列列表索引的行。

以下是df: enter image description here  我正在尝试提取非文本,性别的“文本”列。我尝试了下面的方法来检索除'state'列索引之外的行。但是我如何为多列做到这一点?

df_2 = df[~df.index.isin(state.index)]

# multiple columns - doesn't work
df_2 = df[~df.index.isin(state.index,gender.index)]

0 个答案:

没有答案