Installing R and RStudio
Install R, a free software environment for statistical computing and graphics from CRAN, the Comprehensive R Archive Network. I very recommend you install a precompiled binary distribution for your operating system – use the links up at the top of the CRAN page linked above!
Install RStudio’s IDE (stands for integrated development environment), a powerful user interface for R. Get the Open Source Edition of RStudio Desktop.
- I very recommend you run the Preview version. I find these fairly stable and you’ll get the cool fresh features! Update to fresh Preview versions often.
- Of course, there are also official releases available here: https://www.rstudio.com/products/rstudio/#Desktop
- RStudio comes with a text editor, so there is no instant need to install a separate stand-alone editor.
- RStudio can interface with Git(Hub). However, you must do all the Git(Hub) set up described elsewhere before you can take advantage of this.
If you have a pre-existing installation of R and/or RStudio, we very recommend that you reinstall both and get as current as possible. It can be considerably firmer to run old software than fresh.
- If you upgrade R, you will need to update any packages you have installed. The guideline below should get you began, however you may need to specify more arguments if, e.g., you have been using a non-default library for your packages.
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 development version from GitHub, you will need to update by hand, e.g. via devtools::install_github() .
Testing testing
Do whatever is adequate 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 plain object with code like x <- two * four (followed by come in or comeback). Then inspect the x object by typing x followed by come in or comeback. You should see the value eight print to screen. If yes, you’ve succeeded in installing R and RStudio.
Add-on packages
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 dplyr package for data manipulation, here is one way to do it in the R console (there are others).
By including dependencies = TRUE , we are being explicit and extra-careful to install any extra packages the target package, dplyr 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:
Further resources
The above will get your basic setup ready but here are some links if you are interested in reading a bit further.