formattable.logical {formattable} | R Documentation |
Create a formattable logical vector
Description
Create a formattable logical vector
Usage
## S3 method for class 'logical'
formattable(x, ..., formatter = "ifelse", preproc = NULL, postproc = NULL)
Arguments
x |
a logical vector. |
... |
arguments to be passed to |
formatter |
formatting function, |
preproc |
pre-processor function that prepares |
postproc |
post-processor function that transforms formatted output for printing. |
Value
a formattable
logical vector.
Examples
logi <- c(TRUE, TRUE, FALSE)
flogi <- formattable(logi, "yes", "no")
flogi
!flogi
any(flogi)
all(flogi)
[Package formattable version 0.2.1 Index]