flextable (version 0.5.11)

colformat_lgl: format logical cells

Description

Format logical cells in a flextable.

Usage

colformat_lgl(x, ...)

# S3 method for flextable colformat_lgl( x, j = NULL, col_keys = NULL, true = "true", false = "false", na_str = "", prefix = "", suffix = "", ... )

Arguments

x

a flextable object

...

additional arguments, i can be used to specify a row selector.

j

columns selection.

col_keys

names of the colkeys. Will be deprectated in favor of j in the next version.

false, true

string to be used for logical

na_str

string to be used for NA values

prefix

string to be used as prefix or suffix

suffix

string to be used as prefix or suffix

Illustrations

See Also

Other cells formatters: colformat_char(), colformat_int(), colformat_num(), compose(), set_formatter()

Examples

Run this code
# NOT RUN {
dat <- data.frame(a = c(TRUE, FALSE), b = c(FALSE, TRUE))

ft <- flextable(dat)
ft <- colformat_lgl(x = ft, j = c("a", "b"))
autofit(ft)
# }

Run the code above in your browser using DataCamp Workspace