Answers for "how to get the average of all variables in a panda dataframe"

12

mean of a column pandas

df["Column"].mean()
Posted by: Guest on May-13-2020
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

Code answers related to "how to get the average of all variables in a panda dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language