City College, Spring 2019

Intro to Data Science

Week 9: Trees and the Variance-Bias Tradeoff

April 8, 2019

Today's Agenda
  1. Classification Review
  2. Linear vs. Nonlinear Classification
  3. Decision Trees
  4. Midterm Review
Semester Recap
  1. Loading and Transforming Data
  2. Exploratory Data Analysis
  3. Linear Models for Regression and Classification
Data Science Models
Linear vs Nonlinear Classification Models

Linear models are most effective when the outcome can be modeled with a combination of coefficients of explanatory variables and the data is linearly separable.


Nonlinear models are better suited for outcomes which rely on interactions between different explanatory variables.

Linearly Separable Data
Linearly Inseparable Data
Titanic Disaster

2224 passengers, 710 survivors

Titanic Prediction Data Set
  1. Training set: 891 observations, 38 percent survival rate
  2. Features include: age, sex, socio-economic class, embarkation point, fare paid
  3. Rich potential for additional feature engineering
  4. Prediction goal: who survives?
Survival Rates Among Subgroups
Survival Rates Among Subgroups

Branching a tree relies on a greedy heuristic, typically entropy.


Computers Make Branching Easy
Bias-Variance Tradeoff

An ideal model that both accurately captures the regularities in its training data, but also generalizes well to unseen data. Unfortunately, it is typically impossible to do both simultaneously.


Source.
How do we prevent unnecessary splits?
Hyperparameters: values set before the learning process to avoid overfitting.
Common decision tree hyperparameters:
  1. max_depth
  2. min_samples_split
  3. min_samples_leaf
  4. max_features
max_depth=3
max_leaf_nodes=6
How do we choose hyperparameters?
Cross Validation

See here for a slightly deeper discussion.
Let's make our own trees.

Midterm Results
Multiple Choice Short Answer Exam Total
Points Possible 58 36 94
Mean 53 35 87
Median 53 36 88
Std Dev 3.58 2.09 4.51

Answer key available on the course page: Version 1, Version 2.
Assignment 7: Due Monday, April 15 by 6:30pm

DataCamp's Machine Learning with Tree-Based Models in Python

  • The course should appear collectively as assignment within your existing DataCamp account.
  • Each section will appear separately and will be worth oen point toward the total grade for the homework.
  • Course claims to take 5 hours, but I found it shorter than some of the past courses. Nonetheless, use your time wisely.