Well, I am awfully confused about how to compute statistical measures of data in R - things, like mean, median, variance, and standard deviation. I can do things by hand but I just can't find the proper commands in R.
For example, suppose I have the following random list of numbers:
12, 24, 6, 5, 30, 14, 12, 17, 19
It's easy enough to compute the mean to be:
$$\bar{x} = \frac{12 + 24 + 6 + 5 + 30 + 14 + 12 + 17 + 19}{9} = \frac{139}{9} = 15.\overline{4}.$$
I can compute the standard deviation with a bit more work but what are the R command to do this?