computing the mean of a dataframe along the row code example
Example 1: average out all rows pandas
df.mean(axis=0)#average for each column
df.mean(axis=1)#average for each row
Example 2: Row wise mean pandas
df['mean'] = df.iloc[:, 0:4].mean(axis=1)