fmt_dbl {flextable} | R Documentation |
Format numerical data
Description
The function formats numeric vectors.
Usage
fmt_dbl(x)
Arguments
x |
numeric values |
See Also
Other text formatter functions:
fmt_2stats()
,
fmt_avg_dev()
,
fmt_header_n()
,
fmt_int()
,
fmt_n_percent()
,
fmt_pct()
,
fmt_signif_after_zeros()
Examples
library(flextable)
df <- data.frame(zz = .45)
ft_1 <- flextable(df)
ft_1 <- mk_par(
x = ft_1, j = 1, part = "body",
value = as_paragraph(as_chunk(zz, formatter = fmt_dbl))
)
ft_1 <- autofit(ft_1)
ft_1
[Package flextable version 0.9.6 Index]