Please follow all of the directions below to install R, RStudio, and the tidyverse package on your personal Windows computer. Please let me know if you have any issues.

 

Installing R and Rstudio

To install R on a Windows machine, downloaded the installer from this site by selecting the “Download R X.X.X for Windows” link at the top. Locate the installer on your computer and run it. Using all of the default choices will perform an acceptable install for this class.1

To install RStudio on a Windows machine, download the installer from this link by selecting the “DOWNLOAD RSTUDIO FOR WINDOWS” button. Locate the installer on your computer and run it. Using all of the default choices will perform an acceptable install for this class.2

 

Installing Tidyverse

Extra functionality can be added to R with packages. The tidyverse package is the main package that we will use in this class. You can install the tidyverse package on your computer by opening RStudio (not R, but RStudio) and selecting the File menu, New File submenu, and R Script subsubmenu, which will open a new pane in the upper-left corner of RStudio. In that new pane type the code below exactly as it appears here.

install.packages("tidyverse",type="binary")

Then with your cursor on the line that you just typed press the “Run” button (towards the right side of the top of the pane you just typed in; see below). RStudio should then do a “bunch of stuff” (you will seen a window flashing by).3 After several minutes, the lower-left pane (the “console”) should have a “>” symbol on the last line (see below).

Installing Tidyverse

At this point the installation is complete if no errors occurred along the way. You can check for success by typing the code below exactly as it appears here and running it (make sure your cursor is on the line with the code below and then press the “Run” button).

library(tidyverse)

If your lower-left pane resembles the one shown below then you have successfully installed the tidyverse package.

Installing Tidyverse

 

Optimally Configuring RStudio

I suggest changing the following default settings in RStudio for optimal efficiency.

  • In RStudio select the “Tools” menu and “Global Options” submenu.
    • Under the “Workspace” heading (assuming that “General” on the left is selected) …
      • Turn off (unselect) the “Restore .RData into workspace at startup” item.
      • Change “Ask” following “Save Workspace to .RData on exit:” to “Never”.
    • Select “Code” on the left and “Display” at the top …
      • Turn on (select) “Highlight selected line”.
      • Turn on (select) “Show margin” (and I usually put 80 as the “Margin column”).
      • Turn on (select) “Show syntax highlighting in console input”.
    • Press “OK”.

 


Footnotes

  1. More detailed instructions are here, but note that the current version is either 3.6.3 or 4.0.0. 

  2. More detailed instructions are here, but note that the current version is at least 1.2.5042. 

  3. The tidyverse package depends on many other packages. What RStudio is doing during this process is install all of those other packages.