
Format integer cells in a flextable.
colformat_int(x, ...)# S3 method for flextable
colformat_int(
x,
j = NULL,
col_keys = NULL,
big.mark = ",",
na_str = "",
prefix = "",
suffix = "",
...
)
a flextable object
additional arguments, i can be used to specify a row selector.
columns selection.
names of the colkeys. Will be deprectated in favor of j in the next version.
see formatC
string to be used for NA values
string to be used as prefix or suffix
string to be used as prefix or suffix
Other cells formatters:
colformat_char()
,
colformat_lgl()
,
colformat_num()
,
compose()
# NOT RUN {
dat <- mtcars
ft <- flextable(dat)
colkeys <- c("vs", "am", "gear", "carb")
ft <- colformat_int(x = ft, col_keys = colkeys, prefix = "# ")
autofit(ft)
# }
Run the code above in your browser using DataLab