Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove mentions of lubridate from setup instructions #906

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ While this may sound scary, it is **far more common** to run into issues due to

### Install required R packages

During the course we will need a number of R packages. Packages contain useful R code written by other people. We will use the packages `tidyverse`, `lubridate`, and `ratdat`.
During the course we will need a number of R packages. Packages contain useful R code written by other people. We will use the packages `tidyverse`, and `ratdat`.

To try to install these packages, open RStudio and copy and paste the following command into the console window (look for a blinking cursor on the bottom left), then press the <kbd>Enter</kbd> (Windows and Linux) or <kbd>Return</kbd> (MacOS) to execute the command.

```r
install.packages(c("tidyverse", "lubridate", "ratdat"))
install.packages(c("tidyverse", "ratdat"))
```

Alternatively, you can install the packages using RStudio's graphical user interface by going to `Tools > Install Packages` and typing the names of the packages separated by a comma.
Expand All @@ -105,7 +105,6 @@ When the installation has finished, you can try to load the packages by pasting

```r
library(tidyverse)
library(lubridate)
library(ratdat)
```

Expand Down
Loading