(This article was first published on Statistic on aiR, and kindly contributed to R-bloggers)
Given the following data set, compute the arithmetic mean, median, variance, standard deviation; find the greatest and the smaller value, the sum of all values, the square of the sum of all values, the sum of the square of all values; assigne the ranks and add them, assigning the ranks to the first 6 values and add those.10, 2, 19, 24, 6, 23, 47, 24, 54, 77
Extremely simple to perform in R, deliberately created to familiarize with some statistical functions that can serve us in the future. Not carry over mathematical formulas, which you can find in any book of mathematics, or Wikipedia.
a = c(10, 2, 19, 24, 6, 23, 47, 24, 54, 77)
mean(a) #calculate the arithmetic mean
[1] 28.6
median(a) #calculate the median
[1] 23.5
var(a) #calculate the variance
[1] 561.8222
sd(a) #calculate the standard deviation
[1] 23.70279
max(a) #shows the larger value of the sequence
[1] 77
min(a) #shows the smallest value of the sequence
[1] 2
sum(a) #sum all the values
[1] 286
sum(a)*sum(a) #calculates the square of the sum of all values
[1] 81796
sum(a*a) #calculates the sum of the squares of all values
[1] 13236
sum(rank(a)) #sum of ranks assigned to the variables contained in a
[1] 55
sum(rank(a)[1:6]) #sum of ranks assigned to the first 6 values of a
[1] 21.5
To leave a comment for the author, please follow the link and comment on his blog: Statistic on aiR.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).