Loading lesson path
Variability.
(the average value)
(the mid point value)
(the most common value)
Average of all values.
10 11 14 14 15
: Add all values and divide by the number of values.
Formula
(7 + 8 + 8 + 9 + 9 + 9 + 10 + 11 + 14 + 14 + 15)/11 = 10.3636363636.Count.
let mean = (7+8+8+9+9+9+10+11+14+14+15)/11;Or use a math library like math.js
const values = [7,8,8,9,9,9,10,11,14,14,15];
let mean = math.mean(values);99,86,87,88,111,86,103,87,94,78,77,85,86