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'm curious whether something I tried makes sense statistically...

I took a pile of time series inputs and performed an SVD. I want to predict variable Y on the basis of its own time series, and the first 50 SVD$u factors as external regressors.

It looked like an ARIMA(2,2,2) was a good fit for my variable Y with external regressors from the SVDu terms. Now, to forecast it on the basis of a path of the SVD...

To project the factors, I used a VAR() on SVD\$u because it was convenient. But was this foolish? Since the u values are orthogonal by construction, there should be no multivariate correlation, and this should deliver me a random walk, right? Or should I expect spurious correlation that will mess everything up, and that I should project each component of svd$u independently? I hesitate to do the latter because I like the way VAR() conveniently returns standard errors.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.