summary.epiClogit {SimHap} | R Documentation |
Summary method for objects of class epiClogit
## 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"), ...)
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. |
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. |
Pamela A McCaskie
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.
data(pheno.dat) mymodel <- epi.cc.match(formula=DISEASE~SBP+DBP+strata(STRAT), pheno=pheno.dat) summary(mymodel)