gpt4 book ai didi

python - Pandas:为什么在 boolean 索引后需要双括号来选择列

转载 作者:IT老高 更新时间:2023-10-28 22:24:03 25 4
gpt4 key购买 nike

对于像下面这样的 df 表,

   A B C D
0 0 1 1 1
1 2 3 5 7
3 3 1 2 8

为什么在 boolean 索引后选择特定列需要双括号?

the [['A','C']] part of

df[df['A'] < 3][['A','C']]

最佳答案

对于pandas对象(Series、DataFrame),索引操作符[]只接受

  1. colname或选择列的列名列表
  2. 切片或 boolean 数组来选择行,即它只引用数据框的一维。

对于 df[[colname(s)]] ,内括号是列表,外括号是索引运算符,即如果选择两列或多列,则必须使用双括号。对于一个列名,单对括号返回一个系列,而双括号返回一个数据框。

另外,df.ix[df['A'] < 3,['A','C']]df.loc[df['A'] < 3,['A','C']]在避免返回副本与数据框 View 方面比链式选择要好。

请引用 pandas documentation了解详情

关于python - Pandas:为什么在 boolean 索引后需要双括号来选择列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33417991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com