| Polr | R Documentation | 
Some regression models for ordered categorical responses
Polr(formula, data, subset, weights, offset, cluster, na.action = na.omit, 
     method = c("logistic", "probit", "loglog", "cloglog", "cauchit"), ...)
| formula | an object of class  | 
| data | an optional data frame, list or environment (or object
coercible by  | 
| subset | an optional vector specifying a subset of observations to be used in the fitting process. | 
| weights | an optional vector of weights to be used in the fitting
process.  Should be  | 
| offset | this can be used to specify an _a priori_ known component to
be included in the linear predictor during fitting.  This
should be  | 
| cluster | optional factor with a cluster ID employed for computing clustered covariances. | 
| na.action | a function which indicates what should happen when the data
contain  | 
| method | a character describing the link function. | 
| ... | additional arguments to  | 
Models for ordered categorical responses reusing the interface of
polr. Allows for stratification, censoring and
trunction.
The model is defined with a negative shift term, thus exp(coef())
is the multiplicative change of the odds ratio (conditional odds for 
reference divided by conditional odds of treatment or for a one unit
increase in a numeric variable). Large values of the
linear predictor correspond to large values of the conditional 
expectation response (but this relationship is nonlinear).
An object of class Polr, with corresponding coef,
vcov, logLik, estfun, summary, 
print, plot and predict methods.
Torsten Hothorn, Lisa Moest, Peter Buehlmann (2018), Most Likely Transformations, Scandinavian Journal of Statistics, 45(1), 110–134, \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1111/sjos.12291")}.
  data("wine", package = "ordinal")
  library("MASS")
  polr(rating ~ temp + contact, data = wine)
  Polr(rating ~ temp + contact, data = wine)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.