How to put the max of 3 separate columns in a new column in python/pandas
for example we have: a b c 1 1 3 2 4 1 3 2 1 And now using python I’m trying to create this: a b c max 1 1 3 3c 2 4 1 4b 3 2 1 3a >Solution : If need match first maximal column join max converted to strings with… Read More How to put the max of 3 separate columns in a new column in python/pandas