Compare Rows Pandas Values And See If They Match Python
I need to do some comparations between rows values in a pandas dataframe and see if they match and if they do not. If they match I need to print out and Ok and if they do not I nee
Solution 1:
It's pretty straightforward with iterrows
and iteritems
:
for idx, row in df.iterrows():
if row.nunique()==1:
print(f'The values from {idx} in all datarfames are correct')
else:
print(f'The values from {idx} are:')
print(', '.join(f'{v} in {c}'for v,c in row.iteritems()))
print('Check your data before compare')
print()
Output:
The valuesfrom A inall datarfames are correct
The valuesfrom B are:
df1 in1501, df2 in1401, df3 in1502Check your data before compare
Post a Comment for "Compare Rows Pandas Values And See If They Match Python"