Kalpana Kalpana (Editor)

Generalized additive model for location, scale and shape

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

The Generalized Additive Model for Location, Scale and Shape (GAMLSS) is about statistical modelling and learning. GAMLSS is a modern distribution based approach to (semiparametric) regression analysis. 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 data science language GAMLSS is about supervised machine learning.

Contents

A guiding principle of GAMLSS is how to learn from data generated in many fields. In particular, the GAMLSS statistical framework enables flexible regression and smoothing models to be fitted to the data. The GAMLSS model assumes that the distribution of response variable has any parametric distribution which might be heavy or light-tailed, and positively or negatively skewed. In addition, all the parameters of the distribution [location (e.g., mean), scale (e.g., variance) and shape (skewness and kurtosis)] can be modelled as linear, nonlinear or smooth functions of explanatory variables.

Overview of the model

The generalized additive model for location, scale and shape (GAMLSS) is a statistical model developed by Rigby and Stasinopoulos and later expanded to overcome some of the limitations associated with the popular generalized linear models (GLMs) and generalized additive models (GAMs). For an overview of these limitations see Nelder and Wedderburn (1972) and Hastie and Tibshirani's book.

In GAMLSS the exponential family distribution assumption for the response variable, ( y ), (essential in GLMs and GAMs), is relaxed and replaced by a general distribution family, including highly skew and/or kurtotic continuous and discrete distributions.

The systematic part of the model is expanded to allow modeling not only of the mean (or location) but other parameters of the distribution of y as linear and/or nonlinear, parametric and/or additive non-parametric functions of explanatory variables and/or random effects.

GAMLSS is especially suited for modelling a leptokurtic or platykurtic and/or positively or negatively skewed response variable. For count type response variable data it deals with over-dispersion by using proper over-dispersed discrete distributions. Heterogeneity also is dealt with by modelling the scale or shape parameters using explanatory variables. There are several packages written in R related to GAMLSS models.

A GAMLSS model assumes independent observations y i for i = 1 , 2 , , n with probability (density) function f ( y i | μ i , σ i , ν i , τ i ) conditional on ( μ i , σ i , ν i , τ i ) a vector of four distribution parameters, each of which can be a function to the explanatory variables. The first two population distribution parameters μ i and σ i are usually characterized as location and scale parameters, while the remaining parameter(s), if any, are characterized as shape parameters, e.g. skewness and kurtosis parameters, although the model may be applied more generally to the parameters of any population distribution with up to four distribution parameters, and can be generalized to more than four distribution parameters.

g 1 ( μ ) = η 1 = X 1 β 1 + j = 1 J 1 h j 1 ( x j 1 ) g 2 ( σ ) = η 2 = X 2 β 2 + j = 1 J 2 h j 2 ( x j 2 ) g 3 ( ν ) = η 3 = X 3 β 3 + j = 1 J 3 h j 3 ( x j 3 ) g 4 ( τ ) = η 4 = X 4 β 4 + j = 1 J 4 h j 4 ( x j 4 )

where μ, σ, ν, τ and η k are vectors of length n , β k T = ( β 1 k , β 2 k , , β J k k ) is a parameter vector of length J k , X k is a fixed known design matrix of order n × J k and h j k is a smooth non-parametric function of explanatory variable x j k , j = 1 , 2 , , J k and k = 1 , 2 , 3 , 4 .

For centile estimation the WHO Multicentre Growth Reference Study Group have recommended GAMLSS and the Box-Cox power exponential (BCPE) distributions for the construction of the WHO Child Growth Standards.

What distributions can be used

The form of the distribution assumed for the response variable y, is very general. For example an implementation of GAMLSS in R has around 50 different distributions available. Such implementations also allow use of truncated distributions and censored (or interval) response variables.

References

Generalized additive model for location, scale and shape Wikipedia