If df['score'] contains 85, 90, 78, 95, and 88, what does df['score'].mean() return?
df['score']
df['score'].mean()
Their maximum, 95
Only the number of scores, 5
Their sorted middle value, 88
Their arithmetic average, 87.2