将布尔掩码应用于数据帧

这将是我们的示例数据框:

  color      name   size
0   red      rose    big
1  blue    violet    big
2   red     tulip  small
3  blue  harebell  small

使用魔法 __getitem__[] 访问器。给它一个与数据帧长度相同的 True 和 False 列表将给你:

df[[True, False, True, False]]
  color   name   size
0   red   rose    big
2   red  tulip  small