verify_d: Check that D is suitable for using as binary disease status

View source: R/calculate_roc.R

verify_dR Documentation

Check that D is suitable for using as binary disease status

Description

Checks for two classes and gives a warning message indicating which level is assumed to be 0/1. Throws an error if more than two levels appear in D.

Usage

verify_d(D)

Arguments

D

Vector that will be checked for 2-class labels

Value

A vector the same length as D that takes values 0, indicating no disease or 1 indicating disease.

Examples


verify_d(c(1, 0, 1))
## Not run: 
verify_d(c(TRUE, FALSE, TRUE)) #warning
verify_d(c("Dead", "Alive", "Dead")) #warning
verify_d(c("Disease", "Healthy", "Missing")) #error

## End(Not run)


plotROC documentation built on Oct. 6, 2023, 5:10 p.m.