Installing R and RStudio
Install R
To install the latest version of R itself (the engine), currently 4.4.2 (Pile of Leaves).
- Go to the Comprehensive R Archive Network (CRAN) website: https://cran.r-project.org/
- Click on “Download R for
XXX
”, whereXXX
is either Mac or Windows:
If you use macOS, scroll down to the first .pkg
file in the list of files and download it.
If you use Windows, click “base” (or click on the bolded “install R for the first time” link) and download it.
Double click on the downloaded file (check your
Downloads
folder). Click yes through all the prompts to install like any other program.Install OS specific programs
- macOS only: download and install XQuartz.
- Windows only: download and install Rtools
Install RStudio
RStudio is an integrated development environment (IDE) for R. To install the latter, follow the instructions.
- Go to the free download location on RStudio’s website: https://www.rstudio.com/products/rstudio/download/#download
- The website should automatically detect your operating system (Linux, macOS or Windows) and show a big download button for it:
If not, scroll down a little to the large table and choose the version of RStudio that matches your operating system.
- Double click on the downloaded file (again, check your
Downloads
folder). Click yes through all the prompts to install like any other program.
Double click on RStudio to run it (check your applications folder or start menu).
Install tidyverse
R packages are easy to install with RStudio. Select the packages panel, click on “Install,” type the name of the package you want to install, and press enter.
This can sometimes be tedious when you’re installing lots of packages, though. The tidyverse, for instance, consists of dozens of packages (including ggplot2) that all work together. Rather than install each individually, you can install a single magical package and get them all at the same time.
Go to the packages panel in RStudio, click on “Install,” type “tidyverse”, and press enter. You’ll see a bunch of output in the RStudio console as all the tidyverse packages are installed.
Notice also that RStudio will generate a line of code for you and run it: install.packages("tidyverse")
. You can also just paste and run this instead of using the packages panel.
Install tinytex
When you knit to PDF, R uses a special scientific typesetting program named LaTeX, which is complicated and a large download. To make life easier, there’s an R package named tinytex
that installs a minimal LaTeX program and that automatically deals with differences between macOS and Windows.
To install tinytex:
- Use the Packages in panel in RStudio to install tinytex like you did above with tidyverse. Alternatively, run
install.packages("tinytex")
in the console. - Run
tinytex::install_tinytex()
in the console. - Wait for a bit while R downloads and installs everything you need.
- You should now be able to knit to PDF.