This lesson is being piloted (Beta version)

Visualising data using R: Setup

Setup instructions

If you do not have R and Rstudio installed, follow the instructions under the heading I dont have R and RStudio installed, and return to the next part of this page afterwards.

I allready have R and RStudio installed!

In that case all you need to do is the following:

Make sure you have tidyverse installed:

install.packages("tidyverse")

Check that the package is installed and work:

library(tidyverse)

I’m not sure R and RStudio is updated!

It is a good idea to keep both programs updated!

Windows

macOS

I dont have R and RStudio installed

Where to install?

Please do NOT install R and RStudio on Onedrive or other clouddrives. R will work but you will not be able to install the extensions to R that you will need in this course!

R and RStudio are separate downloads and installations. R is the underlying statistical computing environment, but using R alone is no fun. RStudio is a graphical integrated development environment (IDE) that makes using R much easier and more interactive. You need to install R before you install RStudio. Once installed, because RStudio is an IDE, RStudio will run R in the background. You do not need to run it separately.

After installing both programs, you will need to install the tidyverse package from within RStudio. The tidyverse package is a powerful collection of data science tools within R see the tidyverse website for more details. Follow the instructions below for your operating system, and then follow the instructions to install tidyverse.

Windows

Now return to the top of this page and finish the instructions under “I allready have R and RStudio installed!”

macOS

Now return to the top of this page and finish the instructions under “I allready have R and RStudio installed!”

Linux

Now return to the top of this page and finish the instructions under “I allready have R and RStudio installed!”

Online

The company behind RStudio offers a free cloudbased instance of RStudio at Posit Cloud. where you will be able to run R and RStudio in your browser. Sign up with your Google/Gmail account if you have one, or with any other email.

The free version of Posit Cloud places limitations on the number of projects you can work on, and the amount of memory and processing power you can access.

For the purposes of this course, Posit Cloud is a good alternative to installing R and RStudio on your own computer.