R/CalcFalseNegativeRate.R

Defines functions CalcFalseNegativeRate

Documented in CalcFalseNegativeRate

#' Calculate assay false negative rate
#' @param FN Count of false negatives (integer)
#' @param TP Count of true positives (integer)
#' @export

CalcFalseNegativeRate <- function(FN, TP) {
  return(FN/(FN+TP)*100)
}
msxakk89/dat documentation built on Aug. 3, 2020, 6:39 p.m.