python - Pandas DataFrame 使用另一个 DataFrame 列过滤行

标签 python pandas dataframe

import pandas as pd
import numpy as np

dict1 = {'col1': ['A', 'A', 'A', 'A', 'A','B', 'B', 'B', 'B', 'B' ], 
       'col2':[2, 2, 2, 3, 3, 2, 2, 3, 3 , 3], 
       'col3':[0.7, 0.8, 0.9, 0.95, 0.85, 0.65, 0.75, 0.45, 0.55, 0.75 ],
       'col4':[100,200,300,400,500,600,700,800,900,1000]}
df1 = pd.DataFrame(data=dict1)
df1

dict2 = {'col1': ['A', 'B' ], 
       'col2':[0.75, 0.65], 
       'col3':[1000, 2000 ],
       'col4':[0.8, 0.9]}
df2 = pd.DataFrame(data=dict2)
df2
以最快的方式如何使用 df2 过滤 df1,取决于 df1['col3'] >= df2['col2'] 对于相等的 col1s?
预期结果
>>> df1
  col1  col2  col3  col4
1    A     2  0.80   200
2    A     2  0.90   300
3    A     3  0.95   400
4    A     3  0.85   500
5    B     2  0.65   600
6    B     2  0.75   700
9    B     3  0.75  1000
我的尝试给出了以下错误
>>> df1= df1[df1['col3'] >= float(df2[df2['col1']==df1['col1']]['col2'].values[0])]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/burcak/anaconda3/lib/python3.7/site-packages/pandas/core/ops/common.py", line 64, in new_method
    return method(self, other)
  File "/home/burcak/anaconda3/lib/python3.7/site-packages/pandas/core/ops/__init__.py", line 521, in wrapper
    raise ValueError("Can only compare identically-labeled Series objects")
ValueError: Can only compare identically-labeled Series objects

最佳答案

我会做merge

out = df1.merge(df2[['col1','col2']], on = 'col1', suffixes = ('','1')).query('col3>=col21').drop('col21',1)

out
Out[15]: 
  col1  col2  col3  col4
1    A     2  0.80   200
2    A     2  0.90   300
3    A     3  0.95   400
4    A     3  0.85   500
5    B     2  0.65   600
6    B     2  0.75   700
9    B     3  0.75  1000
reindex
out = df1[df1['col3'] >= df2.set_index('col1')['col2'].reindex(df1['col1']).values]
Out[19]: 
  col1  col2  col3  col4
1    A     2  0.80   200
2    A     2  0.90   300
3    A     3  0.95   400
4    A     3  0.85   500
5    B     2  0.65   600
6    B     2  0.75   700
9    B     3  0.75  1000
您也可以使用 map :
 df1.loc[df1.col3 >= df1.col1.map(df2.set_index("col1").col2)]

关于python - Pandas DataFrame 使用另一个 DataFrame 列过滤行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63947820/

相关文章:

r - 计算保留因子的面板数据的 5 年平均值

python - 通过在 groupby 之后删除 nan 来合并 DataFrame 中的行

python - 网页抓取 - 我需要登录 LinkedIn 才能进行网页抓取 (scrapy)

python - kivy如何旋转图片

json - 将大量 JSON 文件读入 Spark Dataframe

python - 填充空值直到 Pandas 中的特定列值

python - 按列对DataFrame进行分组,对成员进行操作,并将结果输出到新的DataFrame中

python - 如何使用python和Opencv读取视频文件

python - Pandas :逐行比较数据框中的所有值

python - groupby、transform 和 NaN 的奇怪结果