An open API service indexing awesome lists of open source software.

https://github.com/bradleyboehmke/rbootcamp

Interactive tutorials for my R Bootcamp course
https://github.com/bradleyboehmke/rbootcamp

data-science education r teaching tutorial-code tutorial-exercises

Last synced: 9 months ago
JSON representation

Interactive tutorials for my R Bootcamp course

Awesome Lists containing this project

README

          

---
output:
md_document:
variant: markdown_github
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```

**Author:** [Brad Boehmke](http://bradleyboehmke.github.io/)
**License:** [GPL (>= 2)](https://opensource.org/licenses/gpl-license)

`rbootcamp` is an R package that provides a structured learning environment to deliver tutorials for my R Bootcamp courses.

## Installation

You can install `rbootcamp` straight from GitHub with:

```
if (packageVersion("devtools") < 1.6) {
install.packages("devtools")
}

devtools::install_github("bradleyboehmke/rbootcamp")
```

## Start Learning

`rbootcamp` provides several tutorials covering common analytic techniques:

1. "Hello": An introduction to `rbootcamp`
2. "EDA": Practicing Exploratory Data Analysis

To start learning just use the `get_tutorial` function to activate the desired tutorial:

```
library(rbootcamp)

get_tutorial("Hello")
```

Enjoy!