A tool that shows the average of several numbers and how spread out they are (standard deviation) at a glance. Quickly grasp a set of numbers such as test scores, measurements, or experiment data.
Mean = sum / count. Variance = sum of (each value - mean)^2 / count (population) or / (count-1) (sample). Standard deviation = sqrt(variance). The median is the middle value after sorting; the mode is the most frequent value.
Entering the scores 87, 92, 78, 95, 88 gives a mean of 88 and a sample standard deviation of about 6.68. The standard deviation shows how far the values spread from the mean.