Javern Wilson
4/1/2020
Models to be discussed:
Each model can be written in the form directly or indirectly:
Objective: Each of these models seeks to find estimates of the parameters so that the sum of the squared errors or a function of the sum of the squared errors is minimized. The estimates fall along the spectrum of the bias-variance trade-off.
Ordinary linear regression, finds parameter estimates that have minimum bias
Ridge, lasso, and the elastic net find estimates that have lower variance.
Overall Advantages of models:
Overall Disadvantages on models:
A type of Predictive Analysis
Objective:
Preprocessing techniques:
If too many predictors remain after preprocessing steps… - Danger: Overfitting - Lacks degree of freedom
Alternatives:
Limitations:
Penalized Methods (a.k.a. Regularization, Shrinkage Methods)
Regression Models: Ridge, Lasso, Elastic Net
R Implementation: cv.glmnet
, glmnet
\(\lambda\): parameter that controls shrinkage
\(\alpha\): parameter that identifies the penalty mode
Ridge Regression
Lasso Regression
Elastic Net Regression