Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1.49 KB

File metadata and controls

21 lines (19 loc) · 1.49 KB

Principal Components Regression (PCR)

Principal Components Regression is a technique for analyzing multiple regression data that suffer from multicollinearity. When multicollinearity occurs, least squares estimates are unbiased, but their variances are large so they may be far from the true value. By adding a degree of bias to the regression estimates, principal components regression reduces the standard errors. It is hoped that the net effect will be to give more reliable estimates. Another biased regression technique is Ridge Regression, which is more popular these times.

Code

python3 sample.py

Resources