I am finding the max of df2 by row, and setting the max value to new col on df1.
df1['max'] = df2[df2.keys().tolist()].max(axis=1)
This line is throwing a SettingWithCopyWarning. Not sure how to re-write it to make the warning go away. How to re-write it?