Learn R Programming

VGAM (version 0.8-1)

cratio: Ordinal Regression with Continuation Ratios

Description

Fits a continuation ratio logit/probit/cloglog/cauchit/... regression model to an ordered (preferably) factor response.

Usage

cratio(link = "logit", earg = list(),
       parallel = FALSE, reverse = FALSE, zero = NULL)

Arguments

link
Link function applied to the $M$ continuation ratio probabilities. See Links for more choices.
earg
List. Extra argument for the link function. See earg in Links for general information.
parallel
A logical, or formula specifying which terms have equal/unequal coefficients.
reverse
Logical. By default, the continuation ratios used are $\eta_j = logit(P[Y>j|Y \geq j])$ for $j=1,\dots,M$. If reverse is TRUE, then $\eta_j = logit(P[Y
zero
An integer-valued vector specifying which linear/additive predictors are modelled as intercepts only. The values must be from the set {1,2,...,$M$}. The default value means none are modelled as intercept-only terms.

Value

Warning

No check is made to verify that the response is ordinal; see ordered.

Details

In this help file the response $Y$ is assumed to be a factor with ordered values $1,2,\dots,M+1$, so that $M$ is the number of linear/additive predictors $\eta_j$.

There are a number of definitions for the continuation ratio in the literature. To make life easier, in the VGAM package, we use continuation ratios and stopping ratios (see sratio). Stopping ratios deal with quantities such as logit(P[Y=j|Y>=j]).

References

Agresti, A. (2002) Categorical Data Analysis, 2nd ed. New York: Wiley.

Simonoff, J. S. (2003) Analyzing Categorical Data, New York: Springer-Verlag.

McCullagh, P. and Nelder, J. A. (1989) Generalized Linear Models, 2nd ed. London: Chapman & Hall.

Yee, T. W. (2010) The VGAM package for categorical data analysis. Journal of Statistical Software, 32, 1--34. http://www.jstatsoft.org/v32/i10/.

Documentation accompanying the VGAM package at http://www.stat.auckland.ac.nz/~yee contains further information and examples.

See Also

sratio, acat, cumulative, multinomial, pneumo, logit, probit, cloglog, cauchit.

Examples

Run this code
pneumo = transform(pneumo, let=log(exposure.time))
(fit = vglm(cbind(normal,mild,severe) ~ let, cratio(parallel=TRUE), pneumo))
coef(fit, matrix=TRUE)
constraints(fit)
predict(fit)
predict(fit, untransform=TRUE)

Run the code above in your browser using DataLab