summary.BooleanTable {DanielBiostatistics10th} | R Documentation |
Summarize Boolean Test-&-Disease and/or Risk-&-Disease Table
Description
Summarize Boolean test-&-disease and/or risk-&-disease table using
sensitivity, specificity, diagnostic accuracy, predictive values, relative risk
and odds ratio,
together with their 95\%
Clopper-Pearson exact confidence intervals.
Usage
## S3 method for class 'BooleanTable'
summary(object, prevalence, ...)
Arguments
object |
a BooleanTable object |
prevalence |
(optional) numeric scalar, prevalence of disease |
... |
potential parameters, currently not in use |
Details
..
Value
Function summary.BooleanTable do not have a returned value.
References
https://en.wikipedia.org/wiki/Diagnostic_odds_ratio
Examples
(x = array(c(95L, 10L, 31L, 82L), dim = c(2L, 2L)))
summary(BooleanTable(x))
summary(BooleanTable(x), prevalence = c(.0001, .001, .01))
[Package DanielBiostatistics10th version 0.2.4 Index]