https://github.com/emitanaka/dwexercise
Exercises for the Data Wrangling with R Workshop
https://github.com/emitanaka/dwexercise
Last synced: about 1 month ago
JSON representation
Exercises for the Data Wrangling with R Workshop
- Host: GitHub
- URL: https://github.com/emitanaka/dwexercise
- Owner: emitanaka
- License: gpl-3.0
- Created: 2020-11-20T21:33:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T07:06:14.000Z (over 4 years ago)
- Last Synced: 2025-04-02T02:35:46.694Z (about 2 months ago)
- Language: HTML
- Size: 738 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Exercises for the Data Wrangling with R Workshop
This R-package contains the datasets and `learnr` tutorials specifically for the data wrangling workshop. The package relies on the developmental version of `learnr` and `gradethis` so please install the developmental versions as below.
```r
remotes::install_github("rstudio/learnr")
remotes::install_github("rstudio-education/gradethis")
```You can install this workshop package as below.
```r
remotes::install_github("emitanaka/dwexercise")
```In order to launch the exercises, use one of the commands below.
```r
# Day 1
learnr::run_tutorial("day1-exercise-01", package = "dwexercise")
learnr::run_tutorial("day1-exercise-02", package = "dwexercise")
learnr::run_tutorial("day1-exercise-03", package = "dwexercise")
learnr::run_tutorial("day1-exercise-04", package = "dwexercise")# Day 2
learnr::run_tutorial("day2-exercise-01", package = "dwexercise")
learnr::run_tutorial("day2-exercise-02", package = "dwexercise")
learnr::run_tutorial("day2-exercise-03", package = "dwexercise")
learnr::run_tutorial("day2-exercise-04", package = "dwexercise")
```