-
Notifications
You must be signed in to change notification settings - Fork 4
/
prepare.Rmd
33 lines (20 loc) · 1.43 KB
/
prepare.Rmd
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
31
32
33
---
title: "Before we start"
---
To participate on the workshop you can either install R (>4.0) and Rstudio (see instructions bellow) or use an instance of R at RStudio Cloud.
#### Using RStudio Cloud
If you want to use RStudio Cloud you will need a free account. Go to [rstudio.cloud/](https://rstudio.cloud/) and follow de instructions to register. Keep in mind that the free account is limited to 15 hours per month and you don't want to use it all before the workshop.
We'll provide a link to a pre-configured RStudio project during the workshop. You don't have to do anything else.
#### Installing R and RStudio
To install R and RStudio follow the instructions in [these videos](https://www.youtube.com/playlist?list=PLRPB0ZzEYegOZivdelOuEn-R-XUN-DOjd) by [Danielle Navarro](https://djnavarro.net/).
After you have everything installed, you'll need to install a few packages required for the workshop. Follow these instructions:
1. Open RStudio
2. On the console (the panel on the left) type the following commands
```{r, eval=FALSE}
install.packages("tidyverse")
install.packages("palmerpenguins")
```
4. Go to File -> New File -> R Markdown. Click on "Ok" to create a new file. RStudio will ask your permission to install several packages. Go ahead and do it.
5. You can remove the file you just created.
6. Download [this project](rstudio-project-penguins.zip) to work with during the workshop and extrat the files on the .zip.
7. That's it.