Learn R Programming

yaml (version 2.3.9)

verbatim_logical: Alternalte logical handler

Description

A yaml handler function that will cause logical vectors to emit true/false value instead of yes/no value

Usage

verbatim_logical(x)

Value

Returns a vector of strings of either true or false of class verbatim.

Arguments

x

logical values to convert to true or false.

Author

Charles Dupont and James Goldie (jimjam-slam)

Details

To use pass into as.yaml as part of a handler arguement list like list(logical=verbatim_logical).

See Also

as.yaml

Examples

Run this code
vector <- c(TRUE, FALSE, TRUE)

as.yaml(vector, handlers=list(logical=verbatim_logical))

Run the code above in your browser using DataLab