Answers for "find mean of two columns pandas"

1

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
0

how to find mean of one column based on another column in python

In [5]: df.groupby('Column1')['Column2'].mean()
Posted by: Guest on May-16-2020

Code answers related to "find mean of two columns pandas"

Python Answers by Framework

Browse Popular Code Answers by Language