Hello,

I have a set of predictor variables. I am trying to build regression models (OLS) so as to find the individual effect of each variable on the dependent variable. Some of them are continuous and some are categorical variables. When I add all variables, I see some of the significant variables become insignificant and parameters change dramatically, indicating multi collinearity. I have read that if there are two correlated variables, we can remove one of them to build the model.

My question:

Since I want to know the individual effect of the collinear variables, is it fine to build separate models keeping other variables both model specifications?

i.e., if there are four IVs: X1, X2, X3 and X4, out of which X3 and X4 are collinear, is it fine to have two model specifications as follows:

1. Y = b0 + b1*X1 + b2*X2 + b3*X3 + error

2. Y = b0 + b1*X1 + b2*X2 + b4*X4 + error

So whether b3 and b4 in the above models give the individual effects of X3 and X4 on Y, respectively?

Similar questions and discussions