Hi everyone,
I am conducting a Seemingly unrelated estimation for my mlogit model. I am doing it with a variable (Type_ENG_code) that has 4 categories (I coded them 1;2;3;4), in the first step I am trying to create 4 models, where one category is excluded for 4 models.
I am using this manual: https://www.stata.com/manuals13/rsuest.pdf
So in the first step I want to exclude category 1 and I am using this code:
mlogit Type_ENG_code NetZeroPledge ROA EMPL SlackR_ln firm_age i.Year i.industry if Type_ENG_code !="1":Type_ENG_code, base (2)
estimates store m1,title( Type_ENG_code!="1":Type_ENG_code)
the code works, but when I am looking at the table after running the logit, category one is still shown, in the table. I continued to do the same for the other categories except for the base outcome.
What can I do to actually exclude a category?
Thanks in andvance!
Kim
I am conducting a Seemingly unrelated estimation for my mlogit model. I am doing it with a variable (Type_ENG_code) that has 4 categories (I coded them 1;2;3;4), in the first step I am trying to create 4 models, where one category is excluded for 4 models.
I am using this manual: https://www.stata.com/manuals13/rsuest.pdf
So in the first step I want to exclude category 1 and I am using this code:
mlogit Type_ENG_code NetZeroPledge ROA EMPL SlackR_ln firm_age i.Year i.industry if Type_ENG_code !="1":Type_ENG_code, base (2)
estimates store m1,title( Type_ENG_code!="1":Type_ENG_code)
the code works, but when I am looking at the table after running the logit, category one is still shown, in the table. I continued to do the same for the other categories except for the base outcome.
What can I do to actually exclude a category?
Thanks in andvance!
Kim
Comment