Suvarna Garge (Editor)

Ordinal regression

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Ordinal regression

In statistics, ordinal regression (also called "ordinal classification") is a type of regression analysis used for predicting an ordinal variable, i.e. a variable whose value exists on an arbitrary scale where only the relative ordering between different values is significant. It can be considered an intermediate problem between regression and classification. Examples of ordinal regression are ordered logit and ordered probit. Ordinal regression turns up often in the social sciences, for example in the modeling of human levels of preference (on a scale from, say, 1–5 for "very poor" through "excellent"), as well as in information retrieval. In machine learning, ordinal regression may also be called ranking learning.

Contents

Linear models for ordinal regression

Ordinal regression can be performed using a generalized linear model (GLM) that fits both a coefficient vector and a set of thresholds to a dataset. Suppose one has a set of observations, represented by length-p vectors x1 through xn, with associated responses y1 through yn, where each yi is an ordinal variable on a scale 1, ..., K. To this data, one fits a length-p coefficient vector w and a set of thresholds θ1, ..., θK−1 with the property that θ1 < θ2 < ... < θK−1. This set of thresholds divides the real number line into K disjoint segments, corresponding to the K response levels.

The model can now be formulated as

Pr ( y i | x ) = σ ( θ i w x )

or, the cumulative probability of the response y being at most i is given by a function σ (the inverse link function) applied to a linear function of x. Several choices exist for σ; the logistic function

σ ( θ i w x ) = 1 1 + e ( θ i w x )

gives the ordered logit model, while using the probit function gives the ordered probit model. A third option is to use an exponential function

σ ( θ i w x ) = exp ( exp ( θ i w x ) )

which gives the proportional hazards model.

Latent variable model

The probit version of the above model can be justified by assuming the existence of a real-valued latent variable (unobserved quantity) y*, determined by

y = w x + ε

where ε is normally distributed with zero mean and unit variance, conditioned on x. The response variable y results from an "incomplete measurement" of y*, where one only determines the interval into which y* falls:

y = { 1     if     y θ 1 , 2     if     θ 1 < y θ 2 , 3     if     θ 2 < y θ 3 K     if     θ K 1 < y .

Defining θ0 = -∞ and θK = ∞, the above can be summarized as y = k if and only if θk−1 < y* ≤ θk.

From these assumptions, one can derive the conditional distribution of y as

P ( y = k | x ) = P ( θ k 1 < y θ k | x ) = P ( θ k 1 < w x + ε θ k ) = Φ ( θ k w x ) Φ ( θ k 1 w x )

where Φ is the cumulative distribution function of the standard normal distribution, and takes on the role of the inverse link function σ. The log-likelihood of the model for a single training example xi, yi can now be stated as

log L ( w , θ | x i , y i ) = k = 1 K [ y i = k ] log [ Φ ( θ k w x ) Φ ( θ k 1 w x ) ]

(using the Iverson bracket [yi = k].) The log-likelihood of the ordered logit model is analogous, using the logistic function instead of Φ.

Alternative models

In machine learning, alternatives to the latent-variable models of ordinal regression have been proposed. An early result was PRank, a variant of the perceptron algorithm that found multiple parallel hyperplanes separating the various ranks; its output is a weight vector w and a sorted vector of K−1 thresholds θ, as in the ordered logit/probit models. The prediction rule for this model is to output the smallest rank k such that wx < θk.

Other methods rely on the principle of large-margin learning that also underlies support vector machines.

Another approach is given by Rennie and Srebro, who, realizing that "even just evaluating the likelihood of a predictor is not straight-forward" in the ordered logit and ordered probit models, propose fitting ordinal regression models by adapting common loss functions from classification (such as the hinge loss and log loss) to the ordinal case.

References

Ordinal regression Wikipedia