A Journal of Statistical Software paper showing that the many classical categorical-regression models — multinomial logit, proportional-odds/cumulative, adjacent-categories, continuation-ratio, stopping-ratio — are all special cases of one vector generalized linear / additive model (VGLM/VGAM) framework, and are fitted uniformly in the VGAM R package by Fisher scoring / iteratively reweighted least squares. Beyond unifying the standard models it supports natural extensions: reduced-rank VGLMs for dimension reduction, additive (smoothing) predictors, and covariates whose values are specific to each linear predictor — the structure consumer-choice / discrete-choice models need.
multinomial() (baseline-category logit), cumulative() (; proportional-odds when the slopes are shared), acat() (adjacent-categories, ), cratio()/sratio() (continuation-ratio / stopping-ratio).parallel = FALSE), a partial-proportional-odds model."Classical categorical regression models such as the multinomial logit and proportional odds models are shown to be readily handled by the vector generalized linear and additive model (VGLM/VGAM) framework."
"Software has been slow to reflect their commonality and this makes analyses unnecessarily difficult for the practitioner ... using different functions/procedures to fit different models which does not aid the understanding of their connections."
The value here is organizational rather than a new estimator: Yee's point is that cumulative, adjacent-categories, continuation-ratio, and baseline-logit models are not a zoo of separate techniques but different link functions on the same multinomial, and once you see them as a vector GLM (several linear predictors fitted jointly by Fisher scoring) the shared machinery — deviance, standard errors, smoothing, reduced-rank structure — comes for free. That is exactly the classical, likelihood-based complement to the wiki's Bayesian ordinal-regression treatment (where cumulative vs. sequential are compared by Bayes factors): VGAM gives the frequentist family and a single package to fit any member. The two genuinely useful extensions to flag are reduced-rank VGLMs (stereotype / association models, dimension reduction for large category sets) and predictor-specific covariates, which is what lets the same framework reach conditional-logit choice models. As a software paper its contribution is unification and reproducibility.