Hello,
I am trying to run a modified version of the Mincer equation that includes education square as an independent variable. The variable 'education' is defined as a categorical variable that divides the dataset into 7 educational categories.
When I run a basic OLS regression, stata drops edu square due to collinearity.
According to me, centering does not seem a solution to the problem as it will alter the values of the 'education' variable, that have a unique interpretation.
Following is the equation:
Any help on possible solutions is greatly appreciated,
Thanks,
Kusha
I am trying to run a modified version of the Mincer equation that includes education square as an independent variable. The variable 'education' is defined as a categorical variable that divides the dataset into 7 educational categories.
When I run a basic OLS regression, stata drops edu square due to collinearity.
According to me, centering does not seem a solution to the problem as it will alter the values of the 'education' variable, that have a unique interpretation.
Following is the equation:
Code:
reg logincph i.edu edu_sq exp exp2 if sex == 0 reg logincph i.edu edu_sq exp exp2 if sex == 1
Any help on possible solutions is greatly appreciated,
Thanks,
Kusha
Comment