Hi all, I doing a logit in Stata 15.0 but I got a note that says: omitted because of collinearity
I created dummy variables from double types. For example: the 3 stages of economic development, where stage 1 = 1, stage 2 = 2 and stage 3 = 3. I generated new dummies with the following commands (LED means Level of Economic Development):
generate LED_1 = 1 if LED == 1
replace LED_1 = 0 if LED != 1
generate LED_2 = 1 if LED == 2
replace LED_2 = 0 if LED != 2
generate LED_3 = 1 if LED == 3
replace LED_3 = 0 if LED != 3
Same applies for household income dummy and education dummy where I get the same note.
When regressing (using command logit) than this is the output: see attachment
What am I doing wrong or which commands should I use to solve this problem? Should I use a reference category, and if so, which command is used for that or can I just drop one of the variables?
I hope someone can help me! Thanks in advance,
Josephine
I created dummy variables from double types. For example: the 3 stages of economic development, where stage 1 = 1, stage 2 = 2 and stage 3 = 3. I generated new dummies with the following commands (LED means Level of Economic Development):
generate LED_1 = 1 if LED == 1
replace LED_1 = 0 if LED != 1
generate LED_2 = 1 if LED == 2
replace LED_2 = 0 if LED != 2
generate LED_3 = 1 if LED == 3
replace LED_3 = 0 if LED != 3
Same applies for household income dummy and education dummy where I get the same note.
When regressing (using command logit) than this is the output: see attachment
What am I doing wrong or which commands should I use to solve this problem? Should I use a reference category, and if so, which command is used for that or can I just drop one of the variables?
I hope someone can help me! Thanks in advance,
Josephine
Comment