An Introduction of Statistical Learning

image

Introduction

Statistical Learning

Linear Learning

  • Linear regression is a very simple approach for supervised learning.
  • Linear regression is a useful tool for pre- dicting a quantitative response.
  • Many fancy statistical learning approaches can be seen as gener- alizations or extensions of linear regression.
  • Least squares approach that is most commonly used to fit this model.

    Simple Linear Regression

    Simple linear regression lives up to its name: it is a very straightforward approach for predicting a quantitative response Y on the basis of a single predictor variable X.

Mathematically, we can write this linear relationship as

1
2
3
4
Y ≈ β0 + β1X.
It assumes that there is approximately a linear relationship between X and Y.
Notes : You might read “≈” as “is approximately modeled as”.
Description : We are regressing Y on X (or Y onto X).

Eg : sales ≈ β0 +β1 ×TV.

  • We can regress sales onto TV by fitting the model.
  • β0 and β1 are two unknown constants that represent the intercept and slope terms in the linear model.
  • β0 and β1 are known as the model coefficients or parameters.

Multiple Linear Regression

Classification

Resampling Methods

Linear Model Selection and Regularization

Moving Beyond Linearity

Tree Based Methods

Support Vector Machines

Unsupervised Learning

Directory
  1. 1. Introduction
  2. 2. Statistical Learning
  3. 3. Linear Learning
    1. 3.1. Simple Linear Regression
    2. 3.2. Multiple Linear Regression
  4. 4. Classification
  5. 5. Resampling Methods
  6. 6. Linear Model Selection and Regularization
  7. 7. Moving Beyond Linearity
  8. 8. Tree Based Methods
  9. 9. Support Vector Machines
  10. 10. Unsupervised Learning