flextable (version 0.5.6)

colformat_char: format character cells

Description

Format character cells in a flextable.

Usage

colformat_char(x, ...)

# S3 method for flextable colformat_char(x, j = NULL, col_keys = NULL, 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.

na_str

string to be used for NA values

prefix, suffix

string to be used as prefix or suffix

See Also

Other cells formatters: colformat_int, colformat_lgl, colformat_num, compose

Examples

Run this code
# NOT RUN {
dat <- iris
ft <- flextable(dat)
ft <- colformat_char(
  x = ft, col_keys = "Species", suffix = "!")
autofit(ft)
# }

Run the code above in your browser using DataCamp Workspace