gpt4 book ai didi

python - 如何在 pandas 中组合数据框选择查询?

转载 作者:行者123 更新时间:2023-11-30 21:53:43 25 4
gpt4 key购买 nike

low_enrollment = df[ df['total_enrollment'] < 1000 ]
low_enrollment = df[df['sat_score'] < 1000]

如何将它们合并到一行中?这不起作用。

low_enrollment = df[ df['total_enrollment'] < 1000 and df['sat_score'] < 1000]

最佳答案

您应该使用 & 运算符来表示逻辑与,而不是 Python and:

low_enrollment = df[(df['total_enrollment'] < 1000) & (df['sat_score'] < 1000)]

关于python - 如何在 pandas 中组合数据框选择查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59566300/

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