yesno.as.logical: yesno.as.logical

Description Usage Arguments Value Examples

View source: R/yesno.as.logical.R

Description

Convert a vector of Yes/No or Yes/NA values to logical.

Usage

1

Arguments

v

a character vector to convert

Value

a logical vector. Values of "Y" and "Yes" are converted to TRUE. All other values, including NA, are converted to FALSE.

Examples

1
2
3
4
5
foo  <- c("Y", NA, "Y", NA)
yesno.as.logical(foo)

foo  <- c("Y", NA, "Y", "Yes",NA, "No", "N","something else")
yesno.as.logical(foo)

crazybilly/muadc documentation built on March 6, 2021, 4:15 p.m.