Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pandas - df.compare() how to change self/other labels?

Tags:

python

pandas

Using df.compare in Pandas, is it possible to change the labels of self/other from the output?

I need to send this output directly to less technically savvy users and would like to change them to more descriptive labels.

My code:

  if df_1.equals(df_2):
    return None
  else:
    return df_1.compare(df_2, align_axis=0)
like image 537
A Clockwork Orange Avatar asked Nov 01 '25 16:11

A Clockwork Orange


1 Answers

You can rename the index level to something more obvious:

df1 = pd.DataFrame([[1,2,3,4], [1,2,3,4]])
df2 = pd.DataFrame([[1,2,5,4], [5,2,3,1]])

df1.compare(df2, align_axis=0).rename(index={'self': 'left', 'other': 'right'}, level=-1)

           0    2    3
0 left   NaN  3.0  NaN
  right  NaN  5.0  NaN
1 left   1.0  NaN  4.0
  right  5.0  NaN  1.0
like image 65
ALollz Avatar answered Nov 03 '25 08:11

ALollz



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!