Author: Brad Boehmke
License: GPL (>= 2)
learningAnalytics
is an R package that provides a structured learning environment to deliver tutorials covering various statistical learning techniques.
You can install learningAnalytics
straight from GitHub with:
if (packageVersion("devtools") < 1.6) {
install.packages("devtools")
}
devtools::install_github("bradleyboehmke/learningAnalytics")
learningAnalytics
provides several tutorials covering common analytic techniques:
learningAnalytics
To start learning just use the get_tutorial
function to activate the desired tutorial:
library(learningAnalytics)
get_tutorial("Hello")
Enjoy!