Hello, I have a question about model selection, I am using the gologit2 command, and I'm getting the results below. All the variables meet the PL trend lines assumption, but the overall models fail the PL assumptions. My data is survey weighted, the models are shown below. I have three outcome variables along with the controls. Should I use a mlogit model or continue with the parallel trend lines assumption? I'm using survey data so alternative tests of model fit like LR or AIC/BIC are not avaliable, not sure what other test I can use for the PL assumption
Code:
Step 17: All explanatory variables meet the pl assumption
F( 48, 1292) = 2.30
Prob > F = 0.0000
An insignificant test statistic indicates that the final model
does not violate the proportional odds/ parallel lines assumption
Code:
svyset [pw=weights]
local outcomes dental_visit oral_problems food_avoidence
foreach outcome of local outcomes {
local contrls i.imprisson c.age i.biosex i.maritalstatus_alt i.income ///
i.employment_alt i.education c.householdsize i.race_alt ///
i.military_branch
gsvy: gologit2 `outcome' `contrls', autofit(0.001) difficult waldforce or
}

Comment