family_dist {asreml}R Documentation

GLM (and GLMM) family objects for asreml

Description

Family functions specify the details of the models accepted by the family argument to asreml used for fitting generalized linear models (GLMs) and/or generalized linear mixed models (GLMMs).

Usage

asr_gaussian(link = "identity", dispersion = NA)

asr_Gamma(link = "inverse", dispersion = 1, phi = 1)

asr_inverse.gaussian(link = "1/mu^2", dispersion = NA)

asr_binomial(link = "logit", dispersion = 1, total = NULL)

asr_multinomial(link = "logit", dispersion = 1, total = NULL)

asr_negative.binomial(link = "log", dispersion = 1, phi = 1)

asr_poisson(link = "log", dispersion = 1)

Arguments

link

A character string identifying the link function; options and valid names are:

  • Gaussian: "identity", "log", "inverse" (default = "identity")

  • Gamma: "identity", "log", "inverse" (default = "inverse")

  • binomial: "logit", "probit", "cloglog" (default = "logit")

  • negative.binomial: "identity", "log", "inverse" (default = "log")

  • poisson: "identity", "log", "sqrt" (default = "log")

dispersion

If NA, the dispersion parameter is estimated, otherwise it is fixed at the nominated value (default = NA for Gaussian and inverse Gaussian models, for the other families default = 1.0).

phi

The known value of the additional parameter phi.

total

A character string or name giving the column in data containing the total counts.

Value

A list of functions and expressions needed by the family argument.

Functions


[Package asreml version 4.2.0.480 Index]