ModelMetrics (version 1.2.2)

tnr: Specificity, True negative rate

Description

True Negatives / (True Negatives + False Positives)

Usage

tnr(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

Run this code
# NOT RUN {
data(testDF)
glmModel <- glm(y ~ ., data = testDF, family="binomial")
Preds <- predict(glmModel, type = 'response')

tnr(testDF$y, Preds, cutoff = 0)
specificity(testDF$y, Preds, cutoff = 0)

# }

Run the code above in your browser using DataCamp Workspace