confusionStatistics: Compute sensitivity, specificity, positive likelihood ratio,...

Description Usage Arguments Value References Examples

View source: R/bootLR.R

Description

Compute sensitivity, specificity, positive likelihood ratio, negative likelihood ratio for a single 2x2 table

Usage

1
confusionStatistics(truePos, totalDzPos, trueNeg, totalDzNeg)

Arguments

truePos

The number of true positive tests.

totalDzPos

The total number of positives ("sick") in the population.

trueNeg

The number of true negatives in the population.

totalDzNeg

The total number of negatives ("well") in the population.

Value

A one-row matrix containing sensitivity, specificity, posLR, negLR results.

References

Deeks JJ, Altman DG. BMJ. 2004 July 17; 329(7458): 168-169.

Examples

1
2
3
4
## Not run: 
confusionStatistics( 25, 50, 45, 75 )

## End(Not run)

gsk3/bootLR documentation built on May 17, 2019, 8:55 a.m.