R is a powerful analytical language and contains a number of useful packages for analyzing data.

RStudio is a free and open-source integrated development environment (IDE) for R. RStudio provides comprehensive facilities to R programmers and is highly recommended in this class.

Installing R

We recommend installing the most recent version or R4.1.0 as of May 25, 2021. If you have had installed R already some time ago, we recommend updating/reinstalling it to the most recent version. Use a link below to launch download of R installers (if the download does not start, a fix may be to copy-paste the below link to your browser):

For other operating systems, or if you prefer to access the download link from the official website, visit http://cran.us.r-project.org and select Download R for Linux, Download R for macOS or Download R for Windows based on which device you have.

Once the proper installation package has been selected, run the package and follow the on-screen directions. This installation includes the R language and a graphical user interface (GUI). Rather using the GUI, we recommend installing RStudio - an integrated development environment (IDE) that lets you interact with R with some added benefits.

Installing RStudio

To install RStudio, visit http://www.rstudio.com. Once on the website, select DOWNLOAD tab (upper left corner), scroll down and click Download under the RStudio DesktopFree version (1st out of 4 columns), and select the proper installation file for your platform (Windows or Mac).

When you open up RStudio, it should look like this,

There are four main windows.

You can customize the look of your RStudio IDE in Tools > Global Options....

R packages

Packages are the fundamental units of reproducible R code. They are collections of R code that typically share some common purpose. Examples:

Installing R package

  • To install an R package, type in the RStudio console

    install.packages("replace_with_package_name")

    and press enter to execute the command.

  • Once a package is installed, to use its contents in current R session, we run in the RStudio console the command

    library(replace_with_package_name)

(Note the difference in presence of the quotation mark in the two above commands.)

Exercise: Install R package

Use the above to install knitr package. Execute the library(...) command to check if the package loads successfully.

Exercise: Install other R packages we will use in this course

This file contains a list of packages we will use for this course. You can install them one by one, or use the following code we prepared:

if (!requireNamespace("remotes", quietly = TRUE)) {
  install.packages("remotes")
}
remotes::install_github("muschellij2/jhur")