gof {exactLoglinTest}R Documentation

Goodness-of-fit function for Poisson log-linear models

Description

A goodness-of-fit function for Poisson log-linear models as required by mcexact.

Usage

gof(y = NULL, mu = NULL, rowlabels = F)

Arguments

y counts
mu mean
rowlabels labels of returned goodness-of-fit statistics

Details

This function is a useful shell for writing alternative goodness-of-fit statistics for mcexact.

Value

If rowlabels = TRUE, then gof returns only the labels of the goodness of fit statistics. Otherwise it returns the actual values as a vector.

Author(s)

Brian S. Caffo

See Also

mcexact

Examples

#data(residence)
#get fitted values
#mu <- glm(residence$y ~ residence$x, family = poisson)$fit
#gof(residence$y, mu)
#gof(rowlabels = TRUE)

[Package exactLoglinTest version 1.3.6 Index]