0
votes
0answers
86 views

OLS and PLS/PCR coefficients equal when using maximum number of components

I am trying to find different sets of coefficients from different linear models for a set of time-series objects. Currently I have the netchange in ticks for 5 different equity products, and want to ...
7
votes
3answers
689 views

Visual Comparison of Regression & PCA

I'm trying to perfect a method for comparing regression and PCA, inspired by the blog Cerebral Mastication which has also has been discussed from a different angle on SO. Before I forget, many thanks ...
0
votes
1answer
2k views

How to fit a linear regression model with two principal components in R?

Let's say I have a data matrix d pc = prcomp(d) # pc1 and pc2 are the principal components pc1 = pc$rotation[,1] pc2 = pc$rotation[,2] Then this should fit the linear regression model right? ...