Equation:To calculate the average of the data set by adding all the data and divided by the number of the data

Equation:To calculate the average of the data set by adding all the data and divided by the number of the data

Code: Select all
data = [ 10 12 9 5 4 13];
y = mean (data)
y = 8.833


