Statistical indicators of vector

 

Calculate the maximum, minimum, mean, median, mode, quartile, range, variance, standard deviation, skewness and standard error of a vector


A

1

[7,9,6,23,56,1,6]

2

=A1.max()

3

=A1.min()

4

=A1.avg()

5

=A1.mode()

6

=A1.median()

7

=A1.median(1:4)

8

=A1.median(3:4)

9

=var@s(A1)

10

=sqrt(A9)

11

=A1.skew()

12

=A1.se()

A2 Calculate the maximum value of A1

A3 Calculate the minimum value of A1

A4 Calculate the mean value of A1

A5 Calculate the mode value of A1

A6 Calculate the median value of A1

A7 Calculate the lower quartile of A1

A8 Calculate the upper quartile of A1

A9 Calculate the variance of A1

A10 Calculate the standard deviation of A1

A11 Calculate the skewness of A1

A12 Calculate the standard error of A1