Answers for "computing the mean of a dataframe along the row"

2

average out all rows pandas

df.mean(axis=0)#average for each column
df.mean(axis=1)#average for each row
Posted by: Guest on May-20-2020
1

Row wise mean pandas

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

Code answers related to "computing the mean of a dataframe along the row"

Python Answers by Framework

Browse Popular Code Answers by Language