gpt4 book ai didi

python - 如何根据下限和上限调用 pandas DataFrame 中的数据?

转载 作者:行者123 更新时间:2023-12-01 04:24:52 25 4
gpt4 key购买 nike

有没有更简单的方法来编写以下内容?DataFrame2 应包含 DataFrameAge 列中的值在 10 到 40 之间的所有行。

DataFrame2=DataFrame[DataFrame['Age']<40]
DataFrame2=DataFrame2[DataFrame2['Age']>10]

最佳答案

如果您安装了 numexpr,则可以使用 query() :

DataFrame2 = DataFrame.query('Age < 40 & Age > 10')

关于python - 如何根据下限和上限调用 pandas DataFrame 中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33270486/

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