-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintermediate_R_ws_setup.Rmd
More file actions
30 lines (25 loc) · 1.23 KB
/
intermediate_R_ws_setup.Rmd
File metadata and controls
30 lines (25 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: "Intermediate R Programming"
subtitle: "Workshop setup instructions"
---
- Make sure that you have installed the [latest versions of R and RStudio](r_and_rstudio.html).
- In RStudio, install the [devtools and educer packages](https://educe-ubc.github.io/educer.html). This will install all of the tidyverse packages and other resources.
- Install the lmerTest and roxygen2 packages by entering the following code into the console:
```{r install-lmer-roxygen, eval = FALSE}
if (!require(lmerTest)) install.packages("lmerTest")
if (!require(roxygen2)) install.packages("roxygen2")
```
- Click on the button below to download the data file we will use during the workshop and save it on your Desktop or another convenient location.
```{r echo = FALSE, warning = FALSE}
data_file <- read.csv("https://raw.githubusercontent.com/EDUCE-UBC/educer/main/data-raw/data_intermediate_ws.csv")
downloadthis::download_this(data_file,
output_name = "data_intermediate_R",
output_extension = ".csv",
button_label = "Download data",
button_type = "default",
has_icon = TRUE,
icon = "fa fa-save",
class = "hvr-sweep-to-left",
csv2 = FALSE
)
```