Good morning!
I have a complicated question. I've been trying to solve it for two weeks.
I have a file with a lot of observations (43 543).
I have a task, therefore I do a regress. I do this regress:
//regress employed
regress employed GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg1
//regress unemployed
regress unemployed GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg2
//regress retired
regress retired GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg3
esttab reg1 reg2 reg3, b se wide
The important sections are bold. The leftovers are only information from my dataset and the regress command. After the run, I got a table with the results and the number of observations. The number of observations is too low, therefore I have bad results.
The number of observations is too low. I have to increase the number of observations.
What do you usually do in this situation?
What should I do?
What should I check or change?
I tried to write my situation in detail. But if you need more information about my situation just ask me.
Thank you
I have a complicated question. I've been trying to solve it for two weeks.
I have a file with a lot of observations (43 543).
I have a task, therefore I do a regress. I do this regress:
//regress employed
regress employed GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg1
//regress unemployed
regress unemployed GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg2
//regress retired
regress retired GDP_10K life_expectancy unemployed_rate age_55_60 age_60_65 age_65_70 not_alone Tenure civil_servant ph003_ mh002_
est store reg3
esttab reg1 reg2 reg3, b se wide
The important sections are bold. The leftovers are only information from my dataset and the regress command. After the run, I got a table with the results and the number of observations. The number of observations is too low, therefore I have bad results.
The number of observations is too low. I have to increase the number of observations.
What do you usually do in this situation?
What should I do?
What should I check or change?
I tried to write my situation in detail. But if you need more information about my situation just ask me.
Thank you
Comment