I would like to understand how to interpret results from margin and get your opinion as to my interpretation of the same.
About my dataset:
Dependent Variable: carown -- binary 1 if own car, 0 if don't own car
Independent variables:
p_educ0 -- continuous variable showing a person's probability of having less than high school education, so this can take any value between 0 and 1
p_educ1 -- continuous variable showing a person's probability of having a high school degree, so this can take any value between 0 and 1
p_educ2 -- continuous variable showing a person's probability of having some college but no degree, so this can take any value between 0 and 1
p_educ3 -- continuous variable showing a person's probability of having a college degree, so this can take any value between 0 and 1
p_educ4 -- continuous variable showing a person's probability of having some grad level education, so this can take any value between 0 and 1
p_educ5 -- continuous variable showing a person's probability of having a grad degree or higher, so this can take any value between 0 and 1
p_educ0+p_educ1+p_educ2+p_educ3+p_educ4+p_educ5=1 for each observation
n= 1,285
I am interested in interpretation of the results and not the meaningfulness of the model:
logit carown p_educ0 p_educ1 p_educ2 p_educ3 p_educ4
How do i interpret the results from the following three lines of codes:
1. margins
2. margins, at(p_educ0=1 p_educ1=0 p_educ2=0 p_educ3=0 p_educ4=0 p_educ5=0)
3. margins, at(p_educ0=0 p_educ1=1 p_educ2=0 p_educ3=0 p_educ4=0 p_educ5=0)
Can I interpret #1 as the predicted probability of car ownership in my dataset?
Can i interpret #2 as the predicted probability of car ownership if everyone in my dataset had less than high school or no schooling at all?
Similarly, can i interpret #3 as the predicted probability of car ownership if everyone in my dataset had a high school degree?
Further, what does it mean if the result in #2 or #3 is not statistically significant?
Lastly, how can i test if the predicted probability in #2 is statistically significantly different than the predicted probability in #3? My goal ultimately with this exercise is to answer the question: does level of education impact car ownership?
I understand that the model as presented is not the correct way to model the relationship between car ownership and education. I request that you ignore this fact in answering my questions.
Thank you!
About my dataset:
Dependent Variable: carown -- binary 1 if own car, 0 if don't own car
Independent variables:
p_educ0 -- continuous variable showing a person's probability of having less than high school education, so this can take any value between 0 and 1
p_educ1 -- continuous variable showing a person's probability of having a high school degree, so this can take any value between 0 and 1
p_educ2 -- continuous variable showing a person's probability of having some college but no degree, so this can take any value between 0 and 1
p_educ3 -- continuous variable showing a person's probability of having a college degree, so this can take any value between 0 and 1
p_educ4 -- continuous variable showing a person's probability of having some grad level education, so this can take any value between 0 and 1
p_educ5 -- continuous variable showing a person's probability of having a grad degree or higher, so this can take any value between 0 and 1
p_educ0+p_educ1+p_educ2+p_educ3+p_educ4+p_educ5=1 for each observation
n= 1,285
I am interested in interpretation of the results and not the meaningfulness of the model:
logit carown p_educ0 p_educ1 p_educ2 p_educ3 p_educ4
How do i interpret the results from the following three lines of codes:
1. margins
2. margins, at(p_educ0=1 p_educ1=0 p_educ2=0 p_educ3=0 p_educ4=0 p_educ5=0)
3. margins, at(p_educ0=0 p_educ1=1 p_educ2=0 p_educ3=0 p_educ4=0 p_educ5=0)
Can I interpret #1 as the predicted probability of car ownership in my dataset?
Can i interpret #2 as the predicted probability of car ownership if everyone in my dataset had less than high school or no schooling at all?
Similarly, can i interpret #3 as the predicted probability of car ownership if everyone in my dataset had a high school degree?
Further, what does it mean if the result in #2 or #3 is not statistically significant?
Lastly, how can i test if the predicted probability in #2 is statistically significantly different than the predicted probability in #3? My goal ultimately with this exercise is to answer the question: does level of education impact car ownership?
I understand that the model as presented is not the correct way to model the relationship between car ownership and education. I request that you ignore this fact in answering my questions.
Thank you!
Comment