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.
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))
#> [1] 1 0 1
if (FALSE) { # \dontrun{
verify_d(c(TRUE, FALSE, TRUE)) #warning
verify_d(c("Dead", "Alive", "Dead")) #warning
verify_d(c("Disease", "Healthy", "Missing")) #error
} # }