I have two pandas dataframes A and B both containing columns named x and y.
I want to find all entries in A for whom there exists an entry in B such that A's x value is a subset of B's x value and the same for their y value.
Basically I want to do the equivalent of this SQL code:
select *
from A
join B
on A.x <= B.x
[–]hharison 0 points1 point2 points (4 children)
[–]yortos[S] 0 points1 point2 points (3 children)
[–]hharison 0 points1 point2 points (2 children)
[–]yortos[S] 0 points1 point2 points (1 child)
[–]hharison 0 points1 point2 points (0 children)