Hi Richard,
Thank you for your suggestions.
I did the single outcome using probit and then for getting the predictions across grades I use mprobit. And I think I cannot compare the summation of the probabilities in each grade from the mprobit outcomes to the single outcome from probit. Am I correct?
So here is the code that I use:
probit student_smp ib4.year gender urban head age mom_educ conspc12 schoolage_children [fw=weind] if (age>=13&age<=15), r
margins year, atmeans
mprobit student_smp4 ib4.year gender urban head age mom_educ conspc12 schoolage_children [fw=weind] if (age>=13&age<=15), r
margins year, atmeans predict(outcome(1))
margins year, atmeans predict(outcome(2))
margins year, atmeans predict(outcome(3))
So I will get outcome from each grade accurately rather than using separated probit model for each.
However, now I want to make sure that what I am doing is correct. Do you think multinomial probit is correct rather than oprobit? I read on ordered probit where the dependent value has a meaningful sequential order. Do you think that would apply on my case here?
I attempted to use oprobit and using the same predicted probabilties of my multinomial probit here.
Grateful for your help.
Best,
Daim
Thank you for your suggestions.
I did the single outcome using probit and then for getting the predictions across grades I use mprobit. And I think I cannot compare the summation of the probabilities in each grade from the mprobit outcomes to the single outcome from probit. Am I correct?
So here is the code that I use:
probit student_smp ib4.year gender urban head age mom_educ conspc12 schoolage_children [fw=weind] if (age>=13&age<=15), r
margins year, atmeans
mprobit student_smp4 ib4.year gender urban head age mom_educ conspc12 schoolage_children [fw=weind] if (age>=13&age<=15), r
margins year, atmeans predict(outcome(1))
margins year, atmeans predict(outcome(2))
margins year, atmeans predict(outcome(3))
So I will get outcome from each grade accurately rather than using separated probit model for each.
However, now I want to make sure that what I am doing is correct. Do you think multinomial probit is correct rather than oprobit? I read on ordered probit where the dependent value has a meaningful sequential order. Do you think that would apply on my case here?
I attempted to use oprobit and using the same predicted probabilties of my multinomial probit here.
Grateful for your help.
Best,
Daim
Comment