Please input the given sample data
x = [2.3, 3.2, 1.5, 2.4, 3.2, 4.2, 2.6, 1.8, ...
2.2, 3.4, 4.2, 4.2, 2.5, 2.3, 5.1, 2.5, 1.2, 2.3, 1
Base on the data syntax provided below determine the mean, median, minimum value, maximum value, range, standard deviation and the variance.
xbar = mean(x)
xm = median(x)
xmin = min(x)
xmax= max(x)
range = xmax-xmin
sx = st_deviation(x)
sx2 = sx^2
|
Mean
|
Median
|
Min
|
Max
|
Range
|
Standard Deviation
|
Variance
|
Expected Value
|
|
|
|
|
|
|
|
Result
|
|
|
|
|
|
|
|