polr OLS omitting coefficients?

Hi, I hope this is straight forward.

I am running an ordinal logistic regression test using the following code:

polr(formula = ordered(as.factor(df$measures.protection)) ~ df$primary.residence + 
    df$age, Hess = TRUE)

It works fine, but the output seems to be omitting the first group of each IV.

Output:

pic

For age, there is also a "26-35" group, and primary.redident should have a "No" coefficient.

Am I just reading this entirely wrong? I've watched many videos and they all seem to get every group within the coefficients section.

Remember that you can't have more than one complete set of dummies because of perfect multicollinearity problems. (This may or may not be the issue you're seeing.)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.