Answers for "get a column that corresponds to the average of two columns pandas"

0

get a column that corresponds to the average of two columns pandas

df['avg'] = df.mean(axis=1)

       Monday  Tuesday  Wednesday        avg
Mike       42      NaN         12  27.000000
Jenna     NaN      NaN         15  15.000000
Jon        21        4          1   8.666667
Posted by: Guest on May-09-2021

Code answers related to "get a column that corresponds to the average of two columns pandas"

Python Answers by Framework

Browse Popular Code Answers by Language