I have two dataframes:
df1
score id
59.09 1
65.27 2
65.05 3
60.15 4
65.30 5
65.61 6
59.21 7
59.70 8
And the other dataframe
df2
score id
59.10 1
65.27 2
65.05 3
60.15 4
65.30 5
65.62 6
59.21 7
59.70 8
Now when I use compare_df and output it dropped the trailing 0 in df2
score` 59.10.
I need this trailing zero to be always displayed.
I have a contraint to use compareDF only.