| conv_str_logi | R Documentation | 
yaml representation of a boolean strings to logical ValuesConverts a single character string representing a yaml boolean value into a logical value in R.
conv_str_logi(
  input,
  name = "",
  pos_logi = c("TRUE", "true", "True", "yes", "y", "Y", "on"),
  neg_logi = c("FALSE", "false", "False", "no", "n", "N", "off"),
  silent = TRUE
)
| input | ( | 
| name | ( | 
| pos_logi | ( | 
| neg_logi | ( | 
| silent | ( | 
input argument or the appropriate logical value.
conv_str_logi <- getFromNamespace("conv_str_logi", "teal.reporter")
conv_str_logi("TRUE")
conv_str_logi("True")
conv_str_logi("off")
conv_str_logi("n")
conv_str_logi("sth")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.