我有以下代码:
df(df.Sex=='male')
我收到一条错误,指出 DataFrame 对象不可调用。
我该如何解决这个问题?
它被称为 布尔索引 并且只需要 [] :
布尔索引
[]
df[df.Sex=='male']
或者:
df.query("Sex =='male'")