For example, math test average score of your class or average height of your class.
However, we can't calculate further meaning with average number.
Let's assume that there are two classes and their mathematics test result are as follows.
>classA <- c( 80, 90, 75, 70, 80, 85. 80)
>classB <- c(100,100,100,100, 55,50,55)
And we can calculate average.
> mean(classA)
[1] 80
> mean(classB)
[1] 80
As you can see, two classes has same average.
Can you tell students of two classes have a similar educational attainment ?
I don't think so because scores of classB are not distributed evenly.
In other words, distance from the average of classB is further than classA.
As a result, I can tell that classA is much more stable than classB in terms of their score.
