Unanswered
Hey All,
I Am Reporting A
Hey, @<1523701070390366208:profile|CostlyOstrich36>
They both should have the same values and I like to see where they not match.
So even basic stuff like df1==df2
, for example:
>> import pandas as pd
>> df = pd.DataFrame({'a': ['axy a', 'xyz b'], 'b': ['obj e', 'oaw r']})
>> df2 = pd.DataFrame({'a': ['ax2 a', 'xyz b'], 'b': ['obj e', 'oaw r']})
print(df == df2)
a b
0 False True
1 True True
118 Views
0
Answers
11 months ago
11 months ago