R/PPV.R

Defines functions PPV

Documented in PPV

PPV <- function(sens, spec, prev) return((sens * prev)/((sens * 
    prev) + (1 - spec) * (1 - prev)))

Try the evidence package in your browser

Any scripts or data that you put into this service are public.

evidence documentation built on May 2, 2019, 2:14 p.m.