Answers for "python pandas average of columns"

12

mean of a column pandas

df["Column"].mean()
Posted by: Guest on May-13-2020
1

Row wise mean pandas

df['mean'] = df.iloc[:, [0,1,2,3,4].mean(axis=1)
Posted by: Guest on November-02-2020

Code answers related to "python pandas average of columns"

Python Answers by Framework

Browse Popular Code Answers by Language