lc.glm: Log-contrast logistic or Poisson regression with...

View source: R/lc.glm.R

Log-contrast logistic or Poisson regression with compositional predictor variablesR Documentation

Log-contrast logistic or Poisson regression with compositional predictor variables

Description

Log-contrast logistic or Poisson regression with compositional predictor variables.

Usage

lc.glm(y, x, z = NULL, model = "logistic", xnew = NULL, znew = NULL)

Arguments

y

A numerical vector containing the response variable values. This is either a binary variable or a vector with counts.

x

A matrix with the predictor variables, the compositional data. No zero values are allowed.

z

A matrix, data.frame, factor or a vector with some other covariate(s).

model

This can be either "logistic" or "poisson".

xnew

A matrix containing the new compositional data whose response is to be predicted. If you have no new data, leave this NULL as is by default.

znew

A matrix, data.frame, factor or a vector with the values of some other covariate(s). If you have no new data, leave this NULL as is by default.

Details

The function performs the log-contrast logistic or Poisson regression model. The logarithm of the compositional predictor variables is used (hence no zero values are allowed). The response variable is linked to the log-transformed data with the constraint that the sum of the regression coefficients equals 0. If you want the regression without the zum-to-zero contraints see ulc.glm. Extra predictors variables are allowed as well, for instance categorical or continuous.

Value

A list including:

devi

The residual deviance of the logistic or Poisson regression model.

be

The constrained regression coefficients. Their sum (excluding the constant) equals 0.

est

If the arguments "xnew" and znew were given these are the predicted or estimated values, otherwise it is NULL.

Author(s)

Michail Tsagris.

R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.

References

Aitchison J. (1986). The statistical analysis of compositional data. Chapman & Hall.

Lu J., Shi P. and Li H. (2019). Generalized linear models with linear constraints for microbiome compositional data. Biometrics, 75(1): 235–244.

See Also

ulc.glm, lc.glm2, ulc.glm2, lcglm.aov

Examples

y <- rbinom(150, 1, 0.5)
x <- rdiri(150, runif(3, 1, 4) )
mod1 <- lc.glm(y, x)

Compositional documentation built on Oct. 23, 2023, 5:09 p.m.