summary.glmcat {GLMcat}R Documentation

Summary method for a fitted glmcat model object

Description

Summary method for a fitted 'glmcat' model object.

Usage

## S3 method for class 'glmcat'
summary(object, normalized = FALSE, correlation = FALSE, ...)

Arguments

object

an fitted object of class 'glmcat'.

normalized

if 'TRUE', the summary method yields the normalized coefficients.

correlation

if 'TRUE', prints the correlation matrix.

...

additional arguments affecting the summary produced.

Examples

mod1 <- discrete_cm(formula = choice ~ hinc + gc + invt,
                    case_id = "indv", alternatives = "mode", reference = "air",
                    data = TravelChoice,  alternative_specific = c("gc", "invt"),
                    cdf = "normal", normalization = 0.8)
summary(mod1, normalized = TRUE)

[Package GLMcat version 0.2.6 Index]