Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/davidski/applied_predictive_modeling

📚 Notes from a bookclub's weekly exploration of Applied Predictive Modeling
https://github.com/davidski/applied_predictive_modeling

bookclub caret modeling rstats

Last synced: 10 days ago
JSON representation

📚 Notes from a bookclub's weekly exploration of Applied Predictive Modeling

Awesome Lists containing this project

README

        

---
title: "Applied Predictive Modeling Notes"
output: github_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)
```

Working notes for the `compute` (general principles) and `exercises`
(specific open ended tasks) sections of Kuhn & Johnson's Applied Predictive
Modeling text. Where practical, examples are converted to `tidyverse` versions.

This repository is a companion to an internal weekly bookclub on the topic.
We're going through a chapter a week.

## Data Sets

```{r data_sets}
data(package = c("AppliedPredictiveModeling", "mlbench", "caret") ) -> dat
as_tibble(dat$results) %>% select(-LibPath) %>% print(n = nrow(.))
```