Hello Statalist community,
I’m hoping for some help in regards to the following question:
Imagine you had to run an ordinal logistic regression analysis for six dependent variables all with the same model. For example,
Following up you’d like to do the usual steps: margins, marginsplots and predicted probabilities. I’m wondering, do you have any idea how to handle the complexity of the output? I mean, is there a good way to combine the outputs? For instance, I’m not so much interested in every single effect. I’m more interested to compare the effects of the independent variables across the 6 models. To see if all six dependent variables are effected by the same independent variables. Could the coefplot command be the right choice?
Regarding output complexity: I have another question concerning the right procedure to follow when running ordinal logistic regression analysis. I read all the papers I could find from Richard Williams about proportional odds models, partial proportional odds models, generalised ordered logit models and heterogenous choice models. Based on my readings I came up with the following steps. Maybe someone who knows could point out to me if I'm doing the right thing here. Some guidance would be highly appreciated!
As mentioned earlier, any help from your side is highly welcome!
Thanks,
Jonas
I’m hoping for some help in regards to the following question:
Imagine you had to run an ordinal logistic regression analysis for six dependent variables all with the same model. For example,
Code:
ologit depvar1 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4 ologit depvar2 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4 ologit depvar3 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4 ologit depvar4 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4 ologit depvar5 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4 ologit depvar6 indvar1 indvar2 indvar3 indvar4 control1 control2 control3 control4
Regarding output complexity: I have another question concerning the right procedure to follow when running ordinal logistic regression analysis. I read all the papers I could find from Richard Williams about proportional odds models, partial proportional odds models, generalised ordered logit models and heterogenous choice models. Based on my readings I came up with the following steps. Maybe someone who knows could point out to me if I'm doing the right thing here. Some guidance would be highly appreciated!
- Run a standard proportional odds model using the ologit command without taking care of any violations.
- Check if the proportional odds/parallel lines assumption is violated using a Brant test (or additionally running gologit2 with pl suffix and gologit2 with npl suffix and then use an LR test to check for significant differences). Depending on the test statistics I then know whether or not the proportional odds assumption holds.
- If the proportional odds assumption is violated, run both a generalised ordered logistic regression model (gologti2..., npl) and a partial proportional odds model (gologit2..., autofit) and check via LR test which model is more parsimonious. Most likely the partial proportional odds model will be the better choice.
- In addition, use a heterogenous choice model (oglm with het(…) suffix) to see whether or not some of the variables are affected by heteroskedasticity. Here again, I guess, compare the best fitting model from step 3 with the heterogenous choice model from step 4 and see which of these two models has the better fit.
As mentioned earlier, any help from your side is highly welcome!
Thanks,
Jonas
Comment