From d9363781852caa4ea022ce2425c0f45036d0a735 Mon Sep 17 00:00:00 2001 From: Andree Valle Campos Date: Wed, 19 Jun 2024 17:08:07 +0100 Subject: [PATCH 1/2] add steps to rstudio project and github account --- learners/setup.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/learners/setup.md b/learners/setup.md index 0e285e1d..41e6a692 100644 --- a/learners/setup.md +++ b/learners/setup.md @@ -235,6 +235,34 @@ library(tidyverse) If you do NOT see an error like `there is no package called ‘...’` you are good to go! If you do, [contact us](#your-questions)! +### 3. Setup an RStudio project and folder + +We suggest to use RStudio Projects. + +::::::::::::::::::::::::::::::::: checklist + +#### Follow these steps + +- **Create an RStudio project**. If needed, follow this [how-to guide on "Hello RStudio Projects"](https://docs.posit.co/ide/user/ide/get-started/#hello-rstudio-projects) to create one. +- **Create** the `data/` folder tnside the RStudio project or corresponding folder. Use the `data/` folder to **save** the data sets to download. + +::::::::::::::::::::::::::::::::: + +### 4. Create a GitHub Account + +We can use [GitHub](https://github.com) as a collaboration platform to communicate package issues and engage in [community discussions](https://github.com/orgs/epiverse-trace/discussions). + +::::::::::::::::::::::::::::::::: checklist + +#### Follow all these steps + +1. Go to and follow the "Sign up" link at the top-right of the window. +2. Follow the instructions to create an account. +3. Verify your email address with GitHub. + + +::::::::::::::::::::::::::::::::: + ## Data sets ### Download the data From 6065cac0bf7875fcead670ca0d33dc674a05f730 Mon Sep 17 00:00:00 2001 From: Andree Valle Campos Date: Wed, 19 Jun 2024 17:20:35 +0100 Subject: [PATCH 2/2] fix writing to create folder --- learners/setup.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/learners/setup.md b/learners/setup.md index 41e6a692..37f4e827 100644 --- a/learners/setup.md +++ b/learners/setup.md @@ -243,8 +243,16 @@ We suggest to use RStudio Projects. #### Follow these steps -- **Create an RStudio project**. If needed, follow this [how-to guide on "Hello RStudio Projects"](https://docs.posit.co/ide/user/ide/get-started/#hello-rstudio-projects) to create one. -- **Create** the `data/` folder tnside the RStudio project or corresponding folder. Use the `data/` folder to **save** the data sets to download. +- **Create an RStudio Project**. If needed, follow this [how-to guide on "Hello RStudio Projects"](https://docs.posit.co/ide/user/ide/get-started/#hello-rstudio-projects) to create a New Project in a New Directory. +- **Create** the `data/` folder inside the RStudio project or corresponding directory. Use the `data/` folder to **save** the data sets to download. + +The directory of an RStudio Project named, for example `workshop`, should look like this: + +``` +workshop/ +|__ data/ +|__ workshop.Rproj +``` :::::::::::::::::::::::::::::::::