How to calculate the mean (average) of each row in pandas DataFrame in Python

1 Answer

0 votes
import pandas as pd
 
df = pd.DataFrame(
    [['Tom', 91, 80, 94],
     ['Emmy', 98, 95, 96],
     ['Rubeus', 87, 81, 87],
     ['Dumbledore', 99, 100, 98],
     ['Axel', 75, 85, 90]],
    columns=['name', 'algebra', 'python', 'java'])
 
mean = df.mean(axis=1)

print(mean)
  
  
  
'''
run:
  
0    88.333333
1    96.333333
2    85.000000
3    99.000000
4    83.333333
dtype: float64

'''

 



answered Jan 7, 2021 by avibootz
...