Learn R Programming

upstartr (version 0.1.2)

convert_str_to_logical: Converts a character vector to logicals

Description

Takes a character vector and converts it to logicals, optionally using a vector of patterns to match against for truthy and falsy values.

Usage

convert_str_to_logical(
  x,
  truthy = c("T", "TRUE", "Y", "YES"),
  falsy = c("F", "FALSE", "N", "NO")
)

Value

A logical vector.

Arguments

x

A character vector.

truthy

A vector of case-insensitive truthy values to turn into TRUE.

falsy

A vector of case-insensitive falsy values to turn into FALSE.

Examples

Run this code
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