gpt4 book ai didi

python - 多条件切片( Pandas 数据框)

转载 作者:太空宇宙 更新时间:2023-11-04 03:31:42 27 4
gpt4 key购买 nike

我有一个包含各种数据列和行的数据框。我想选择年列 = 2015 和月列 = 7 的所有行。

以下作品:

new_result.loc[new_result['Year'] == 2015,:].loc[new_result['Month'] == 7,:]

但是,有没有更优雅的方式来表达同样的事情呢?即更少的文本,因为我可以看到对于多条件查询,总文本是如何失控的。

最佳答案

new_result[(new_result['Year']==2015) & (new_result['Month']==7)]

new_result.query("Year==2015 and Month==7")

关于python - 多条件切片( Pandas 数据框),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30902661/

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