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
- Host: GitHub
- URL: https://github.com/bradleyboehmke/rbootcamp
- Owner: bradleyboehmke
- Created: 2017-08-15T20:45:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-26T17:32:30.000Z (almost 8 years ago)
- Last Synced: 2025-07-29T12:58:16.400Z (10 months ago)
- Topics: data-science, education, r, teaching, tutorial-code, tutorial-exercises
- Language: HTML
- Size: 1.27 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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!