forked from cis-ds/course-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcm010.Rmd
More file actions
34 lines (24 loc) · 1.24 KB
/
cm010.Rmd
File metadata and controls
34 lines (24 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
title: "Statistical learning: classification"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(cache=TRUE)
```
# cm010 - February 8, 2017
## Overview
* Demonstrate the use of logistic regression for classification
* Identify methods for assessing classification model accuracy
* Define a decision tree
* Demonstrate how to estimate a decision tree
* Define and estimate a random forest
* Introduce the `caret` package for statistical learning in R
## Slides and links
* [Slides](extras/cm010_slides.html)
* [Logistic regression](stat003_logistic_regression.html)
* [Decision trees and random forests](stat004_decision_trees.html)
* [The `caret` Package](https://topepo.github.io/caret/) - introductory book for the `caret` package. Tells you what models you can implement and all the nitty-gritty details to customize `train` for different cross-validation methods.
* Chapters 4.1-3, 8.1, 8.2.2 in [*An Introduction to Statistical Learning*](http://link.springer.com.proxy.uchicago.edu/book/10.1007%2F978-1-4614-7138-7)
## To do for Monday
* [Start homework 6](hw06-stat-learn.html)
* Read chapter 5 in [*An Introduction to Statistical Learning*](http://link.springer.com.proxy.uchicago.edu/book/10.1007%2F978-1-4614-7138-7)