print.insilico_summary {InSilicoVA} | R Documentation |
Print method for summarizing InSilicoVA Model Fits
Description
This function is the print method for class insilico_summary
.
Usage
## S3 method for class 'insilico_summary'
print(x, ...)
Arguments
x |
|
... |
not used |
Author(s)
Zehang Li, Tyler McCormick, Sam Clark
Maintainer: Zehang Li <lizehang@uw.edu>
References
Tyler H. McCormick, Zehang R. Li, Clara Calvert, Amelia C. Crampin, Kathleen Kahn and Samuel J. Clark Probabilistic cause-of-death assignment using verbal autopsies, Journal of the American Statistical Association (2016), 111(515):1036-1049.
See Also
Examples
## Not run:
# load sample data together with sub-population list
data(RandomVA1)
# extract InterVA style input data
data <- RandomVA1$data
# extract sub-population information.
# The groups are "HIV Positive", "HIV Negative" and "HIV status unknown".
subpop <- RandomVA1$subpop
# run without subpopulation
fit1<- insilico( data, subpop = NULL,
Nsim = 400, burnin = 200, thin = 10 , seed = 1,
external.sep = TRUE, keepProbbase.level = TRUE)
summary(fit1)
summary(fit1, top = 10)
# save individual COD distributions to files
summary(fit1, file = "results.csv")
## End(Not run)
[Package InSilicoVA version 1.4.0 Index]