glm.summary {GLMpack}R Documentation

Summarize regression output from generalized linear models.

Description

An alternative to the summary() function.

Usage

glm.summary(in.object, alpha = 0.05)

Arguments

in.object

The regression output from glm().

alpha

A parameter defaulted to 0.05.

Value

The output is a matrix.

Examples

data(campaign)
attach(campaign)
cmpgn.out <- glm(TOTCONTR ~ CANDGENDER + PARTY + INCUMCHALL + HISPPCT,
              family=Gamma(link = 'log'), data=campaign)
glm.summary(cmpgn.out)


[Package GLMpack version 0.1.0 Index]