Ecosyste.ms: Awesome

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

https://bradleyboehmke.github.io/learningAnalytics/

An R package that provides a structured learning environment to deliver tutorials covering various statistical learning techniques
https://bradleyboehmke.github.io/learningAnalytics/

data-science education r statistical-learning teaching

Last synced: about 1 month ago
JSON representation

An R package that provides a structured learning environment to deliver tutorials covering various statistical learning techniques

Lists

README

        

---
output: github_document
---

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

# learningAnalytics

**Author:** [Brad Boehmke](http://bradleyboehmke.github.io/)

**License:** [GPL (>= 2)](https://opensource.org/licenses/gpl-license)

`learningAnalytics` is an R package that provides a structured learning environment to deliver tutorials covering various statistical learning techniques.

## Installation

You can install `learningAnalytics` straight from GitHub with:

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

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

## Start Learning

`learningAnalytics` provides several tutorials covering common analytic techniques:

1. "Hello": An introduction to `learningAnalytics`
2. "EDA": Exploratory Data Analysis
3. "Unsupervised": Principal Components Analysis & Cluster Analysis
4. "Linear Regression": Linear Regression
5. "Supervised Classification": Logistic Regression & Discriminant Analysis
6. "Resampling": Leave-One-Out Cross-Validation, *k*-Fold Cross Validation, & Bootstrapping
7. "Model Selection": Best Subset & Stepwise Selection for Linear Models

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

```
library(learningAnalytics)

get_tutorial("Hello")
```

Enjoy!