gpt4 book ai didi

python,pandas,按条件删除行

转载 作者:行者123 更新时间:2023-12-04 16:23:14 29 4
gpt4 key购买 nike

你好,我需要帮助根据条件删除一些行:如果估计价格减去价格超过 1500(正),则删除该行

    price      estimated price 
0 13295 13795
1 19990 22275
2 7295 6498
例如,只有索引 1 会被删除
谢谢你!

最佳答案

如果小于或等于 1500,则更改获取所有行的逻辑减去后 boolean indexing Series.le :

df1 = df[df['estimated price'].sub(df['price']).le(1500)]
像反转掩码一样工作,更像 1500 :
df1 = df[~df['estimated price'].sub(df['price']).gt(1500)]

关于python,pandas,按条件删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69388274/

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