I'd like to fit an ordered logit model in R with just linear terms.
I am using the polr package to get the ordered logit (first time using this package), with an ordinal dependent and three binary (hum2-4) and one 4-level (it1) predictors. it1 shows up with what looks like quadratic and cubic terms in the fit--see below.
I don't think I want higher-order terms.
- Is that what these are, or is it something peculiar to do with contrasts?
- If they're higher-order terms, how can I suppress them?
- If they're something else, I'd love an explanation (or a link to one).
Thanks in advance for any enlightenment you might offer.
Call:
polr(formula = hum1 ~ hum2 + hum3 + hum4 + it1, data = dataOfInterest_na,
na.action = na.exclude)
Coefficients:
Value Std. Error t value
hum2No 1.23618 0.1444 8.5594
hum3No 0.81917 0.1280 6.4008
hum4No -0.54814 0.2248 -2.4383
it1.L 0.31895 0.1394 2.2876
it1.Q 0.28690 0.1230 2.3326
it1.C 0.02601 0.1044 0.2493