Vector generalized linear model

Last updated

In statistics, the class of vector generalized linear models (VGLMs) was proposed to enlarge the scope of models catered for by generalized linear models (GLMs). In particular, VGLMs allow for response variables outside the classical exponential family and for more than one parameter. Each parameter (not necessarily a mean) can be transformed by a link function. The VGLM framework is also large enough to naturally accommodate multiple responses; these are several independent responses each coming from a particular statistical distribution with possibly different parameter values.

Contents

Vector generalized linear models are described in detail in Yee (2015). [1] The central algorithm adopted is the iteratively reweighted least squares method, for maximum likelihood estimation of usually all the model parameters. In particular, Fisher scoring is implemented by such, which, for most models, uses the first and expected second derivatives of the log-likelihood function.

Motivation

GLMs essentially cover one-parameter models from the classical exponential family, and include 3 of the most important statistical regression models: the linear model, Poisson regression for counts, and logistic regression for binary responses. However, the exponential family is far too limiting for regular data analysis. For example, for counts, zero-inflation, zero-truncation and overdispersion are regularly encountered, and the makeshift adaptations made to the binomial and Poisson models in the form of quasi-binomial and quasi-Poisson can be argued as being ad hoc and unsatisfactory. But the VGLM framework readily handles models such as zero-inflated Poisson regression, zero-altered Poisson (hurdle) regression, positive-Poisson regression, and negative binomial regression. As another example, for the linear model, the variance of a normal distribution is relegated as a scale parameter and it is treated often as a nuisance parameter (if it is considered as a parameter at all). But the VGLM framework allows the variance to be modelled using covariates.

As a whole, one can loosely think of VGLMs as GLMs that handle many models outside the classical exponential family and are not restricted to estimating a single mean. During estimation, rather than using weighted least squares during IRLS, one uses generalized least squares to handle the correlation between the M linear predictors.

Data and notation

We suppose that the response or outcome or the dependent variable(s), , are assumed to be generated from a particular distribution. Most distributions are univariate, so that , and an example of is the bivariate normal distribution.

Sometimes we write our data as for . Each of the n observations are considered to be independent. Then . The are known positive prior weights, and often .

The explanatory or independent variables are written , or when i is needed, as . Usually there is an intercept, in which case or .

Actually, the VGLM framework allows for S responses, each of dimension . In the above S = 1. Hence the dimension of is more generally . One handles S responses by code such as vglm(cbind(y1, y2, y3) ~ x2 + x3, ..., data = mydata) for S = 3. To simplify things, most of this article has S = 1.

Model components

The VGLM usually consists of four elements:

1. A probability density function or probability mass function from some statistical distribution which has a log-likelihood , first derivatives and expected information matrix that can be computed. The model is required to satisfy the usual MLE regularity conditions.
2. Linear predictors described below to model each parameter ,
3. Link functions such that
4. Constraint matrices for each of full column-rank and known.

Linear predictors

Each linear predictor is a quantity which incorporates information about the independent variables into the model. The symbol (Greek "eta") denotes a linear predictor and a subscript j is used to denote the jth one. It relates the jth parameter to the explanatory variables, and is expressed as linear combinations (thus, "linear") of unknown parameters i.e., of regression coefficients .

The jth parameter, , of the distribution depends on the independent variables, through

Let be the vector of all the linear predictors. (For convenience we always let be of dimension M). Thus all the covariates comprising potentially affect all the parameters through the linear predictors . Later, we will allow the linear predictors to be generalized to additive predictors, which is the sum of smooth functions of each and each function is estimated from the data.

Each link function provides the relationship between a linear predictor and a parameter of the distribution. There are many commonly used link functions, and their choice can be somewhat arbitrary. It makes sense to try to match the domain of the link function to the range of the distribution's parameter value. Notice above that the allows a different link function for each parameter. They have similar properties as with generalized linear models, for example, common link functions include the logit link for parameters in , and the log link for positive parameters. The VGAM package has function identitylink() for parameters that can assume both positive and negative values.

Constraint matrices

More generally, the VGLM framework allows for any linear constraints between the regression coefficients of each linear predictors. For example, we may want to set some to be equal to 0, or constraint some of them to be equal. We have

where the are the constraint matrices. Each constraint matrix is known and prespecified, and has M rows, and between 1 and M columns. The elements of constraint matrices are finite-valued, and often they are just 0 or 1. For example, the value 0 effectively omits that element while a 1 includes it. It is common for some models to have a parallelism assumption, which means that for , and for some models, for too. The special case when for all is known as trivial constraints; all the regression coefficients are estimated and are unrelated. And is known as an intercept-only parameter if the jth row of all the are equal to for , i.e., equals an intercept only. Intercept-only parameters are thus modelled as simply as possible, as a scalar.

The unknown parameters, , are typically estimated by the method of maximum likelihood. All the regression coefficients may be put into a matrix as follows:

The xij facility

With even more generally, one can allow the value of a variable to have a different value for each . For example, if each linear predictor is for a different time point then one might have a time-varying covariate. For example, in discrete choice models, one has conditional logit models, nested logit models, generalized logit models, and the like, to distinguish between certain variants and fit a multinomial logit model to, e.g., transport choices. A variable such as cost differs depending on the choice, for example, taxi is more expensive than bus, which is more expensive than walking. The xij facility of VGAM allows one to generalize to .

The most general formula is

Here the is an optional offset; which translates to be a matrix in practice. The VGAM package has an xij argument that allows the successive elements of the diagonal matrix to be inputted.

Software

Yee (2015) [1] describes an R package implementation in the called VGAM. [2] Currently this software fits approximately 150 models/distributions. The central modelling functions are vglm() and vgam(). The family argument is assigned a VGAM family function, e.g., family = negbinomial for negative binomial regression, family = poissonff for Poisson regression, family = propodds for the proportional odd model or cumulative logit model for ordinal categorical regression.

Fitting

Maximum likelihood

We are maximizing a log-likelihood

where the are positive and known prior weights. The maximum likelihood estimates can be found using an iteratively reweighted least squares algorithm using Fisher's scoring method, with updates of the form:

where is the Fisher information matrix at iteration a. It is also called the expected information matrix, or EIM.

VLM

For the computation, the (small) model matrix constructed from the RHS of the formula in vglm() and the constraint matrices are combined to form a big model matrix. The IRLS is applied to this big X. This matrix is known as the VLM matrix, since the vector linear model is the underlying least squares problem being solved. A VLM is a weighted multivariate regression where the variance-covariance matrix for each row of the response matrix is not necessarily the same, and is known. (In classical multivariate regression, all the errors have the same variance-covariance matrix, and it is unknown). In particular, the VLM minimizes the weighted sum of squares

This quantity is minimized at each IRLS iteration. The working responses (also known as pseudo-response and adjusted dependent vectors) are

where the are known as working weights or working weight matrices. They are symmetric and positive-definite. Using the EIM helps ensure that they are all positive-definite (and not just the sum of them) over much of the parameter space. In contrast, using Newton–Raphson would mean the observed information matrices would be used, and these tend to be positive-definite in a smaller subset of the parameter space.

Computationally, the Cholesky decomposition is used to invert the working weight matrices and to convert the overall generalized least squares problem into an ordinary least squares problem.

Examples

Generalized linear models

Of course, all generalized linear models are a special cases of VGLMs. But we often estimate all parameters by full maximum likelihood estimation rather than using the method of moments for the scale parameter.

Ordered categorical response

If the response variable is an ordinal measurement with M + 1 levels, then one may fit a model function of the form:

  where

for Different links g lead to proportional odds models or ordered probit models, e.g., the VGAM family function cumulative(link = probit) assigns a probit link to the cumulative probabilities, therefore this model is also called the cumulative probit model. In general they are called cumulative link models.

For categorical and multinomial distributions, the fitted values are an (M + 1)-vector of probabilities, with the property that all probabilities add up to 1. Each probability indicates the likelihood of occurrence of one of the M + 1 possible values.

Unordered categorical response

If the response variable is a nominal measurement, or the data do not satisfy the assumptions of an ordered model, then one may fit a model of the following form:

for The above link is sometimes called the multilogit link, and the model is called the multinomial logit model. It is common to choose the first or the last level of the response as the reference or baseline group; the above uses the last level. The VGAM family function multinomial() fits the above model, and it has an argument called refLevel that can be assigned the level used for as the reference group.

Count data

Classical GLM theory performs Poisson regression for count data. The link is typically the logarithm, which is known as the canonical link. The variance function is proportional to the mean:

where the dispersion parameter is typically fixed at exactly one. When it is not, the resulting quasi-likelihood model is often described as Poisson with overdispersion, or quasi-Poisson; then is commonly estimated by the method-of-moments and as such, confidence intervals for are difficult to obtain.

In contrast, VGLMs offer a much richer set of models to handle overdispersion with respect to the Poisson, e.g., the negative binomial distribution and several variants thereof. Another count regression model is the generalized Poisson distribution. Other possible models are the zeta distribution and the Zipf distribution.

Extensions

Reduced-rank vector generalized linear models

RR-VGLMs are VGLMs where a subset of the B matrix is of a lower rank. Without loss of generality, suppose that is a partition of the covariate vector. Then the part of the B matrix corresponding to is of the form where and are thin matrices (i.e., with R columns), e.g., vectors if the rank R = 1. RR-VGLMs potentially offer several advantages when applied to certain models and data sets. Firstly, if M and p are large then the number of regression coefficients that are estimated by VGLMs is large (). Then RR-VGLMs can reduce the number of estimated regression coefficients enormously if R is low, e.g., R = 1 or R = 2. An example of a model where this is particularly useful is the RR-multinomial logit model, also known as the stereotype model. Secondly, is an R-vector of latent variables, and often these can be usefully interpreted. If R = 1 then we can write so that the latent variable comprises loadings on the explanatory variables. It may be seen that RR-VGLMs take optimal linear combinations of the and then a VGLM is fitted to the explanatory variables . Thirdly, a biplot can be produced if R = 2 , and this allows the model to be visualized.

It can be shown that RR-VGLMs are simply VGLMs where the constraint matrices for the variables in are unknown and to be estimated. It then transpires that for such variables. RR-VGLMs can be estimated by an alternating algorithm which fixes and estimates and then fixes and estimates , etc.

In practice, some uniqueness constraints are needed for and/or . In VGAM, the rrvglm() function uses corner constraints by default, which means that the top R rows of is set to . RR-VGLMs were proposed in 2003. [3]

Two to one

A special case of RR-VGLMs is when R = 1 and M = 2. This is dimension reduction from 2 parameters to 1 parameter. Then it can be shown that

where elements and are estimated. Equivalently,

This formula provides a coupling of and . It induces a relationship between two parameters of a model that can be useful, e.g., for modelling a mean-variance relationship. Sometimes there is some choice of link functions, therefore it offers a little flexibility when coupling the two parameters, e.g., a logit, probit, cauchit or cloglog link for parameters in the unit interval. The above formula is particularly useful for the negative binomial distribution, so that the RR-NB has variance function

This has been called the NB-P variant by some authors. The and are estimated, and it is also possible to obtain approximate confidence intervals for them too.

Incidentally, several other useful NB variants can also be fitted, with the help of selecting the right combination of constraint matrices. For example, NB  1, NB  2 (negbinomial() default), NB  H; see Yee (2014) [4] and Table 11.3 of Yee (2015). [1]

RCIMs

The subclass of row-column interaction models (RCIMs) has also been proposed; these are a special type of RR-VGLM. RCIMs apply only to a matrix Y response and there are no explicit explanatory variables . Instead, indicator variables for each row and column are explicitly set up, and an order-R interaction of the form is allowed. Special cases of this type of model include the Goodman RC association model and the quasi-variances methodology as implemented by the qvcalc R package.

RCIMs can be defined as a RR-VGLM applied to Y with

For the Goodman RC association model, we have so that if R = 0 then it is a Poisson regression fitted to a matrix of counts with row effects and column effects; this has a similar idea to a no-interaction two-way ANOVA model.

Another example of a RCIM is if is the identity link and the parameter is the median and the model corresponds to an asymmetric Laplace distribution; then a no-interaction RCIM is similar to a technique called median polish.

In VGAM, rcim() and grc() functions fit the above models. And also Yee and Hadi (2014) [5] show that RCIMs can be used to fit unconstrained quadratic ordination models to species data; this is an example of indirect gradient analysis in ordination (a topic in statistical ecology).

Vector generalized additive models

Vector generalized additive models (VGAMs) are a major extension to VGLMs in which the linear predictor is not restricted to be linear in the covariates but is the sum of smoothing functions applied to the :

where These are Madditive predictors. Each smooth function is estimated from the data. Thus VGLMs are model-driven while VGAMs are data-driven. Currently, only smoothing splines are implemented in the VGAM package. For M > 1 they are actually vector splines, which estimate the component functions in simultaneously. Of course, one could use regression splines with VGLMs. The motivation behind VGAMs is similar to that of Hastie and Tibshirani (1990) [6] and Wood (2017). [7] VGAMs were proposed in 1996 . [8]

Currently, work is being done to estimate VGAMs using P-splines of Eilers and Marx (1996) . [9] This allows for several advantages over using smoothing splines and vector backfitting, such as the ability to perform automatic smoothing parameter selection easier.

Quadratic reduced-rank vector generalized linear models

These add on a quadratic in the latent variable to the RR-VGLM class. The result is a bell-shaped curve can be fitted to each response, as a function of the latent variable. For R = 2, one has bell-shaped surfaces as a function of the 2 latent variables---somewhat similar to a bivariate normal distribution. Particular applications of QRR-VGLMs can be found in ecology, in a field of multivariate analysis called ordination.

As a specific rank-1 example of a QRR-VGLM, consider Poisson data with S species. The model for Species s is the Poisson regression

for . The right-most parameterization which uses the symbols has particular ecological meaning, because they relate to the species abundance, optimum and tolerance respectively. For example, the tolerance is a measure of niche width, and a large value means that that species can live in a wide range of environments. In the above equation, one would need in order to obtain a bell-shaped curve.

QRR-VGLMs fit Gaussian ordination models by maximum likelihood estimation, and they are an example of direct gradient analysis. The cqo() function in the VGAM package currently calls optim() to search for the optimal , and given that, it is easy to calculate the site scores and fit a suitable generalized linear model to that. The function is named after the acronym CQO, which stands for constrained quadratic ordination: the constrained is for direct gradient analysis (there are environmental variables, and a linear combination of these is taken as the latent variable) and the quadratic is for the quadratic form in the latent variables on the scale. Unfortunately QRR-VGLMs are sensitive to outliers in both the response and explanatory variables, as well as being computationally expensive, and may give a local solution rather than a global solution. QRR-VGLMs were proposed in 2004. [10]

See also

Related Research Articles

<span class="mw-page-title-main">Least squares</span> Approximation method in statistics

The method of least squares is a standard approach in regression analysis to approximate the solution of overdetermined systems by minimizing the sum of the squares of the residuals made in the results of each individual equation.

<span class="mw-page-title-main">Logistic regression</span> Statistical model for a binary dependent variable

In statistics, the (binary) logistic model is a statistical model that models the probability of one event taking place by having the log-odds for the event be a linear combination of one or more independent variables ("predictors"). In regression analysis, logistic regression is estimating the parameters of a logistic model. Formally, in binary logistic regression there is a single binary dependent variable, coded by an indicator variable, where the two values are labeled "0" and "1", while the independent variables can each be a binary variable or a continuous variable. The corresponding probability of the value labeled "1" can vary between 0 and 1, hence the labeling; the function that converts log-odds to probability is the logistic function, hence the name. The unit of measurement for the log-odds scale is called a logit, from logistic unit, hence the alternative names. See § Background and § Definition for formal mathematics, and § Example for a worked example.

In statistics, a generalized linear model (GLM) is a flexible generalization of ordinary linear regression. The GLM generalizes linear regression by allowing the linear model to be related to the response variable via a link function and by allowing the magnitude of the variance of each measurement to be a function of its predicted value.

The general linear model or general multivariate regression model is a compact way of simultaneously writing several multiple linear regression models. In that sense it is not a separate statistical linear model. The various multiple linear regression models may be compactly written as

<span class="mw-page-title-main">Nonlinear regression</span> Regression analysis

In statistics, nonlinear regression is a form of regression analysis in which observational data are modeled by a function which is a nonlinear combination of the model parameters and depends on one or more independent variables. The data are fitted by a method of successive approximations.

Dirichlet distribution Probability distribution

In probability and statistics, the Dirichlet distribution, often denoted , is a family of continuous multivariate probability distributions parameterized by a vector of positive reals. It is a multivariate generalization of the beta distribution, hence its alternative name of multivariate beta distribution (MBD). Dirichlet distributions are commonly used as prior distributions in Bayesian statistics, and in fact the Dirichlet distribution is the conjugate prior of the categorical distribution and multinomial distribution.

In statistics, ordinary least squares (OLS) is a type of linear least squares method for estimating the unknown parameters in a linear regression model. OLS chooses the parameters of a linear function of a set of explanatory variables by the principle of least squares: minimizing the sum of the squares of the differences between the observed dependent variable in the given dataset and those predicted by the linear function of the independent variable.

Weighted least squares (WLS), also known as weighted linear regression, is a generalization of ordinary least squares and linear regression in which knowledge of the variance of observations is incorporated into the regression. WLS is also a specialization of generalized least squares.

In statistics, Poisson regression is a generalized linear model form of regression analysis used to model count data and contingency tables. Poisson regression assumes the response variable Y has a Poisson distribution, and assumes the logarithm of its expected value can be modeled by a linear combination of unknown parameters. A Poisson regression model is sometimes known as a log-linear model, especially when used to model contingency tables.

In statistics, binomial regression is a regression analysis technique in which the response has a binomial distribution: it is the number of successes in a series of independent Bernoulli trials, where each trial has probability of success . In binomial regression, the probability of a success is related to explanatory variables: the corresponding concept in ordinary regression is to relate the mean value of the unobserved response to explanatory variables.

Non-linear least squares is the form of least squares analysis used to fit a set of m observations with a model that is non-linear in n unknown parameters (m ≥ n). It is used in some forms of nonlinear regression. The basis of the method is to approximate the model by a linear one and to refine the parameters by successive iterations. There are many similarities to linear least squares, but also some significant differences. In economic theory, the non-linear least squares method is applied in (i) the probit regression, (ii) threshold regression, (iii) smooth regression, (iv) logistic link regression, (v) Box-Cox transformed regressors.

In statistics, principal component regression (PCR) is a regression analysis technique that is based on principal component analysis (PCA). More specifically, PCR is used for estimating the unknown regression coefficients in a standard linear regression model.

<span class="mw-page-title-main">Errors-in-variables models</span> Regression models accounting for possible errors in independent variables

In statistics, errors-in-variables models or measurement error models are regression models that account for measurement errors in the independent variables. In contrast, standard regression models assume that those regressors have been measured exactly, or observed without error; as such, those models account only for errors in the dependent variables, or responses.

Sliced inverse regression is a tool for dimensionality reduction in the field of multivariate statistics.

Linear least squares (LLS) is the least squares approximation of linear functions to data. It is a set of formulations for solving statistical problems involved in linear regression, including variants for ordinary (unweighted), weighted, and generalized (correlated) residuals. Numerical methods for linear least squares include inverting the matrix of the normal equations and orthogonal decomposition methods.

The Generalized Additive Model for Location, Scale and Shape (GAMLSS) is an approach to statistical modelling and learning. GAMLSS is a modern distribution-based approach to (semiparametric) regression. A parametric distribution is assumed for the response (target) variable but the parameters of this distribution can vary according to explanatory variables using linear, nonlinear or smooth functions. In machine learning parlance, GAMLSS is a form of supervised machine learning.

In statistics and in machine learning, a linear predictor function is a linear function of a set of coefficients and explanatory variables, whose value is used to predict the outcome of a dependent variable. This sort of function usually comes in linear regression, where the coefficients are called regression coefficients. However, they also occur in various types of linear classifiers, as well as in various other models, such as principal component analysis and factor analysis. In many of these models, the coefficients are referred to as "weights".

In statistics, the variance function is a smooth function which depicts the variance of a random quantity as a function of its mean. The variance function is a measure of heteroscedasticity and plays a large role in many settings of statistical modelling. It is a main ingredient in the generalized linear model framework and a tool used in non-parametric regression, semiparametric regression and functional data analysis. In parametric modeling, variance functions take on a parametric form and explicitly describe the relationship between the variance and the mean of a random quantity. In a non-parametric setting, the variance function is assumed to be a smooth function.

The generalized functional linear model (GFLM) is an extension of the generalized linear model (GLM) that allows one to regress univariate responses of various types on functional predictors, which are mostly random trajectories generated by a square-integrable stochastic processes. Similarly to GLM, a link function relates the expected value of the response variable to a linear predictor, which in case of GFLM is obtained by forming the scalar product of the random predictor function with a smooth parameter function . Functional Linear Regression, Functional Poisson Regression and Functional Binomial Regression, with the important Functional Logistic Regression included, are special cases of GFLM. Applications of GFLM include classification and discrimination of stochastic processes and functional data.

In statistics, linear regression is a linear approach for modelling the relationship between a scalar response and one or more explanatory variables. The case of one explanatory variable is called simple linear regression; for more than one, the process is called multiple linear regression. This term is distinct from multivariate linear regression, where multiple correlated dependent variables are predicted, rather than a single scalar variable.

References

  1. 1 2 3 Yee, T. W. (2015). Vector Generalized Linear and Additive Models: With an Implementation in R. New York, USA: Springer. ISBN   978-1-4939-2817-0.
  2. "Vector Generalized Linear Models". 2016-01-18.
  3. Yee, T. W.; Hastie, T. J. (2003). "Reduced-rank vector generalized linear models". Statistical Modelling. 3 (1): 15–41. CiteSeerX   10.1.1.36.3700 . doi:10.1191/1471082x03st045oa.
  4. Yee, T. W. (1996). "Reduced-rank vector generalized linear models with two linear predictors". Computational Statistics & Data Analysis. 71: 889–902. doi:10.1016/j.csda.2013.01.012.
  5. Yee, T. W.; Hadi, A. F. (2014). "Row-column interaction models, with an R implementation". Computational Statistics. 29 (6): 1427–1445. doi:10.1007/s00180-014-0499-9.
  6. Hastie, T. J.; Tibshirani, R. J. (1990). Generalized Additive Models. London:Chapman and Hall.
  7. Wood, S. N. (2017). Generalized Additive Models: An Introduction with R (second ed.). London: Chapman and Hall. ISBN   9781498728331.
  8. Yee, T. W.; Wild, C. J. (1996). "Vector generalized additive models". Journal of the Royal Statistical Society, Series B. 58 (3): 481–493.
  9. Eilers, P. H. C.; Marx, B. D. (1996). "Flexible smoothing with B-splines and penalties". Statistical Science. 11 (2): 89–121. CiteSeerX   10.1.1.47.4521 . doi:10.1214/ss/1038425655.
  10. Yee, T. W. (2004). "A new technique for maximum-likelihood canonical Gaussian ordination". Ecological Monographs. 74 (4): 685–701. doi:10.1890/03-0078.

Further reading