powered by
Takes a character vector and converts it to logicals, optionally using a vector of patterns to match against for truthy and falsy values.
convert_str_to_logical( x, truthy = c("T", "TRUE", "Y", "YES"), falsy = c("F", "FALSE", "N", "NO") )
A logical vector.
A character vector.
A vector of case-insensitive truthy values to turn into TRUE.
A vector of case-insensitive falsy values to turn into FALSE.
convert_str_to_logical(c('YES', 'Y', 'No', 'N', 'YES', 'yes', 'no', 'Yes', 'NO', 'Y', 'y'))
Run the code above in your browser using DataLab