Collect a small amount of data from any source (between 10 and 50 numbers). Enter the data and assign to a vector named my data. Compute the following "summary statistics" on your data:
(a) Sum.
(b) Average.
(c) Minimum value.
(d) Maximum value.
(e) The geometric mean of n numbers is the nth root of their product. The R command prod finds the product of the elements of a vector. Use prod to find the geometric mean of your data.