Learn R Programming

VGAM (version 1.0-1)

linkfun.vglm: Link Functions for VGLMs

Description

Returns the link functions, and parameter names, for vector generalized linear models (VGLMs).

Usage

linkfun.vglm(object, earg = FALSE, ...)

Arguments

object
Object of class "vglm", i.e., a VGLM object.
earg
Logical. Return the extra arguments associated with each link function? If TRUE then a list is returned.
...
Arguments that might be used in the future.

Value

  • Usually just a (named) character string, with the link functions in order. It is named with the parameter names. If earg = TRUE then a list with the following components.
  • linkThe default output.
  • eargThe extra arguments, in order.

Details

All fitted VGLMs have a link function applied to each parameter. This function returns these, and optionally, the extra arguments associated with them.

See Also

linkfun, multilogit, vglm.

Examples

Run this code
fit1 <- vgam(cbind(r1, r2) ~ s(year, df = 3), gev(zero = 2:3), data = venice)
coef(fit1, matrix = TRUE)
linkfun(fit1)
linkfun(fit1, earg = TRUE)

Run the code above in your browser using DataLab