gpt4 book ai didi

python - 在 Pandas 中按两列过滤数据框

转载 作者:行者123 更新时间:2023-12-01 09:06:32 25 4
gpt4 key购买 nike

我有一个数据框A,包含每个城市每小时的天气数据。

City  Hour  Temperature
A 1 30
A 2 32
...
B 1 39
B 2 40

我有另一个数据帧 B,它指示我有兴趣分析 A 中的哪条记录。

City  Hour  
A 1
B 2

如何通过 B 过滤 A

预期输出:

City  Hour  Temperature
A 1 30
B 2 40

目前,我正在使用内连接。

最佳答案

使用合并

df.merge(dfb)
Out[820]:
City Hour Temperature
0 A 1 30
1 B 2 40

关于python - 在 Pandas 中按两列过滤数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52006292/

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