Say you have 2 dataframes with the same columns.
But say dataframe A has 10 rows, and dataframe B has 100 rows, but the 10 rows in dataframe A are in dataframe B. The 10 rows may not be in the same row numbers as dataframe B.
How do we determine that those 10 rows in df A are fully contained in df B?
For example.
Say we have this for df A (only using 1 row)
A | B | C
1 | 2 | 3
and df B is:
A | B | C
2 | 5 | 5
3 | 2 | 7
1 | 2 | 3
5 | 1 | 5
How do we check that df A is contained in B? Assume that the rows will always be unique in the sense that there will always be a unique A+B combination