confusion.matrix.false.negative.rate.simple: Confusion Matrix Measures - False Negative/Miss Rate

View source: R/confusion.matrix.false.negative.rate.simple.R

confusion.matrix.false.negative.rateR Documentation

Confusion Matrix Measures - False Negative/Miss Rate

Description

Calculate False Negative Rate (also called Miss Rate), defined as FN/P, for a given confusion matrix.

Usage

confusion.matrix.false.negative.rate(confusion.matrix)

confusion.matrix.miss.rate(confusion.matrix)

confusion.matrix.false.negative.rate.simple(
  false.negative = 0,
  true.positive = 1,
  count.positive = false.negative + true.positive
)

confusion.matrix.miss.rate.simple(
  false.negative = 0,
  true.positive = 1,
  count.positive = false.negative + true.positive
)

Arguments

confusion.matrix

Matrix - confusion matrix.

false.negative

Scalar - Cases identified as false negative

true.positive

Scalar - Cases identified as true positive

count.positive

Scalar - Total cases identified as positive - optional if first two parameters are used.

Value

A scalar with computed value.


burrm/lolcat documentation built on Aug. 15, 2024, 6:16 p.m.