I'm trying to calculate in R a projection matrix P of an arbitrary N x J matrix S:

P = S (S'S) ^ -1 S'

I've been trying to operationalize this with the following function:

P <- function(S){
  output <- S %*% solve(t(S) %*% S) %*% t(S)
  return(output)
}

But when I use this I get errors that look like this:

Error in solve.default(t(S) %*% S, t(S), tol = 1e-07) : 
  system is computationally singular: reciprocal condition number = 2.26005e-28

I think that this is a result of numerical underflow and/or instability as discussed in numerous places like r-help and here, but I'm not experienced enough using SVD or QR decomposition to fix the problem, or else put this existing code into action. I've also tried the suggested code, which is to write solve as a system:

output <- S %*% solve (t(S) %*% S, t(S), tol=1e-7)

But still it doesn't work. Any suggestions would be appreciated.

I'm pretty sure that my matrix should be invertible and does not have any collinearities, if only because I have tried testing this with a matrix of orthogonal dummy variables, and it still doesn't work.

Also, I'd like to apply this to fairly large matrices, so I'm looking for a neat general solution.

link|improve this question
1  
Is there a reason that you do not want to use princomp or prcomp? Calculating principal components does not need to be done by hand. – Paul Hiemstra Jan 30 at 21:47
Afraid there is no general solution, if that's the condition number you have a problem. – Dr G Jan 30 at 22:17
Hi, I'm not trying to do PCA as much as implement an estimator I've read about. I find it odd that I can't get this to work even for a simple matrix of dummy instruments, when that seems guaranteed to be not collinear. – user1179005 Jan 31 at 12:37
1. Why don't you post your S matrix? and also S'S? 2. How about using a "typical" S matrix? 3. Try brackets around t(S) %*% S? – power Feb 23 at 2:07
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.