I have a "set" of "tuples" as follows
set = {(2, 3), (2, 4), (5, 5)}
My DataFrame looks like this:
df = pd.DataFrame( {'one': [1,2,4,1], 'two' : [5,3,2,2]})
I want to check if in each line the "tuple" formed by the elements of the two se...
asked by
15.07.2018 / 01:57