fmt_signif_after_zeros | R Documentation |
Rounds significant figures after zeros in numeric vectors.
The number of digits displayed after the leading zeros is
customizable using the digits
parameter.
fmt_signif_after_zeros(x, digits = 3)
x |
numeric values |
digits |
number of digits displayed after the leading zeros |
tabulator()
, mk_par()
Other text formatter functions:
fmt_2stats()
,
fmt_avg_dev()
,
fmt_dbl()
,
fmt_header_n()
,
fmt_int()
,
fmt_n_percent()
,
fmt_pct()
x <- data.frame(
x = c(0.00000004567, 2.000003456, 3, pi)
)
ft_1 <- flextable(x)
ft_1 <- align(x = ft_1, j = 1, align = "left")
mk_par(ft_1, value = as_paragraph(
fmt_signif_after_zeros(x)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.