Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
335 views
in Technique[技术] by (71.8m points)

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

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)
question from:https://stackoverflow.com/questions/65909149/pandas-df-compare-how-to-change-self-other-labels

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...