search for: p3_b

Displaying 1 result from an estimated 1 matches for "p3_b".

Did you mean: 3_b
2008 Mar 06
0
Help with colinearity problem in multiple linear regression
...;Murder"] # repeat for partitions 3:N # ... # collect data from the all the partitions, this is the key for # the parallelism technique, I don't know how to do this step if # I was somehow doing QR decomposition. A = P1_A + P2_A # ... + P3_A ... + PN_A b = P1_b + P2_b # ... + P3_b ... + PN_b # calculate regression, this fails because of sigularity solve(A) %*% b # If I exclude the introduced column it works, but I'm not # sure how this would be generalized. solve(A[-5,-5]) %*% b[-5] # Compare to lm() lm(Murder~UrbanPop+Assault+Rape+Introduced, P)