Style percentages
style_percent(x, symbol = FALSE, big.mark = NULL, decimal.mark = NULL, ...)
| x | numeric vector of percentages |
|---|---|
| symbol | Logical indicator to include percent symbol in output.
Default is |
| big.mark | Character used between every 3 digits to separate
hundreds/thousands/millions/etc.
Default is |
| decimal.mark | The character to be used to indicate the numeric decimal point.
Default is |
| ... | Other arguments passed on to |
A character vector of styled percentages
See Table Gallery vignette for example
Other style tools:
style_number(),
style_pvalue(),
style_ratio(),
style_sigfig()
Daniel D. Sjoberg
percent_vals <- c(-1, 0, 0.0001, 0.005, 0.01, 0.10, 0.45356, 0.99, 1.45) style_percent(percent_vals)#> [1] NA "0" "<0.1" "0.5" "1.0" "10" "45" "99" "145"style_percent(percent_vals, symbol = TRUE)#> [1] NA "0%" "<0.1%" "0.5%" "1.0%" "10%" "45%" "99%" "145%"