summary.epiClogit {SimHap}R Documentation

Summarizing epidemiological analysis models for matched case-control data

Description

Summary method for objects of class epiClogit

Usage

## S3 method for class 'epiClogit':
summary(object, ...)
## S3 method for class 'summary.epiClogit':
print(x, digits = max(3, getOption("digits") - 3), 
        signif.stars = getOption("show.signif.stars"), ...)

Arguments

object an object of class epiClogit, a result of a call to epi.cc.match.
x an object of class summary.epiClogit, the result of a call to
summary.epiClogit.
digits the number of significant digits to use when printing.
signif.stars logical. If TRUE, ``significance stars" are printed for each coefficient.
... further arguments passed to or from other methods.

Value

summary.epiClogit returns an object of class summary.snpClogit, a list with components

terms terms attribute of formula called in epi.cc.match.
coefficients summarized results from fitted model, including odds ratios and p-values.
formula formula used in epi.Clogit.
Wald Wald statistic for the fitted model.
rsquared adjusted r-squared values for the fitted model.
residuals the residuals, that is response minus fitted values.

Author(s)

Pamela A McCaskie

References

McCaskie, P.A., Carter, K.W. Hazelton, M., Palmer, L.J. (2007) SimHap: A comprehensive modeling framework for epidemiological outcomes and a multiple-imputation approach to haplotypic analysis of population-based data, [online] www.genepi.org.au/simhap.

See Also

epi.cc.match

Examples


data(pheno.dat)
mymodel <- epi.cc.match(formula=DISEASE~SBP+DBP+strata(STRAT), 
        pheno=pheno.dat)
summary(mymodel)


[Package SimHap version 1.0.0 Index]