npv: Negative Predictive Value

Description Usage Arguments Examples

View source: R/ModelMetrics.R

Description

True Negatives / (True Negatives + False Negatives)

Usage

1
npv(actual, predicted, cutoff = 0.5)

Arguments

actual

A vector of the labels

predicted

A vector of predicted values

cutoff

A cutoff for the predicted values

Examples

1
2
3
4
5
data(testDF)
glmModel <- glm(y ~ ., data = testDF, family="binomial")
Preds <- predict(glmModel, type = 'response')

npv(testDF$y, Preds, cutoff = 0)

JackStat/ModelMetrics documentation built on July 6, 2021, 9:48 a.m.