stat.anova.jmdem {jmdem} | R Documentation |
JMDEM Anova Statistics
Description
This is a utility function, used in jmdem
method for anova(..., test != NULL)
and should not be used by the average user.
Usage
stat.anova.jmdem(table, test = c("Rao", "Wald"))
Arguments
table |
numeric matrix as results from |
test |
a character string, partially matching one of " |
Value
A matrix which is the original table
, augmented by a column of test statistics, depending on the test
argument.
Author(s)
Karl Wu Ka Yui (karlwuky@suss.edu.sg)
References
Hastie, T. J. and Pregibon, D. (1992). Generalized linear models. Chapter 6 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.
See Also
Examples
## Example in jmdem(...)
MyData <- simdata.jmdem.sim(mformula = y ~ x, dformula = ~ z,
mfamily = poisson(),
dfamily = Gamma(link = "log"),
beta.true = c(0.5, 4),
lambda.true = c(2.5, 3), n = 100)
fit <- jmdem(mformula = y ~ x, dformula = ~ z, data = MyData,
mfamily = poisson, dfamily = Gamma(link = "log"),
dev.type = "deviance", method = "CG")
stat.anova.jmdem(anova(fit, test = "Rao", print.results = FALSE)$table.x)
[Package jmdem version 1.0.1 Index]