Install R, a free software environment for statistical computing and graphics from CRAN, the Comprehensive R Archive Network. It is highly recommended to install a precompiled binary distribution for your operating system – use the links up at the top of the CRAN page linked above!
If you have a pre-existing installation of R and/or RStudio, we highly recommend that you reinstall both and upgrade to the most recent version. It is very easy and RStudio, specifically, is changing rapidly and positively (written 2014-11). You may even wish to use the preview version of RStudio (we do!) available here.
update.packages(ask = FALSE, checkBuilt = TRUE)
Note: this will only look for updates on CRAN. So if you use a package that lives only on GitHub or if you want a develoment version from GitHub, you will need to update manually, e.g. via devtools::install_github().
Do whatever is appropriate for your OS to launch RStudio. You should get a window similar to the screenshot you see here, but yours will be more boring because you haven’t written any code or made any figures yet!
Put your cursor in the pane labelled Console, which is where you interact with the live R process. Create a simple object with code like x <- 2 * 4 (followed by enter or return). Then inspect the x object by typing x followed by enter or return. You should see the value 8 print to screen. If yes, you’ve succeeded in installing R and RStudio.
R is an extensible system and many people share useful code they have developed as a package via CRAN and GitHub. To install a package from CRAN, for example the plyr package for data aggregation, here is one way to do it in the R console (there are others).
install.packages("plyr", dependencies = TRUE)
By including dependencies = TRUE, we are being explicit and extra-careful to install any additional packages the target package, plyr in the example above, needs to have around.
You could use the above method to install the following packages, all of which we will use:
dplyr, package webpageggplot2 package webpageThe above will get your basic setup ready but here are some links if you are interested in reading a bit further.