Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I have a regression problem for multi-dimensional response, say like 1000 dimension response, without using PCA to the response, my mean square error for regression is like ~80. Then, I apply PCA to these 1000 dimensions, and use 3 of them which represent 90% variation of the response, and perform the regression again. Now the mse is ~8. So how can I interpret this results? Can I claim that using 3 PCA components can get better regression since mse is 8 which is significant smaller than 80?

share|improve this question
Something you might want to clarify: You say "1000 dimension response" and then "10 dimensions", do you mean you have n=1000 observations and 10 outcomes? – chl May 13 '12 at 7:53
sorry it is my typo, I edit it. the response is 1000 dimension – user974270 May 13 '12 at 8:03
I'm afraid this question is stll very unclear. – rolando2 May 13 '12 at 13:00
which part is not clear? – user974270 May 13 '12 at 13:26
What is your sample size? How many dependent and how many independent variables are there? Is Emre correct in guessing that you are conducting the procedure called "principal components regression," which is a specialized version of multiple regression in which a large number of independent variables are reduced to principal components? Note that "response variable" usually means "dependent variable." – rolando2 May 16 '12 at 0:06

1 Answer

If I understand correctly, you're doing principal component regression of the test data onto the principal components of the training data. If this is the case, you seem to have encountered overfitting; the phenomenon of fitting the noise as well as the data. This is one of the problems PCA was conceived to remedy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.