R can be used to analyze data and perform statistical analysis. Functions like help(), ? and help.start() provide information about other functions. Objects created in R sessions are stored by name and can be removed with rm(). Vectors like x=c(1,2,3,4,5) can be created and their length checked with length(x). Subsets of vectors can be selected using logical or integer indexes inside square brackets. Matrices are multi-dimensional generalizations of vectors that can be manipulated using operators like * and %. Data can be read into R from external files using functions like read.table() and read.delim(). Common statistical distributions like normal, uniform and exponential are available as functions in R for