Format percentages
pct.RdPrint formatted percentages. Code modified from scales::percent.
Usage
pct(
x,
accuracy = 0.01,
scale = 100,
return = "character",
prefix = "",
suffix = "%",
big.mark = ",",
decimal.mark = ".",
trim = TRUE,
...
)Arguments
- x
A numeric vector of percents format.
- accuracy
A number to round to. Use (e.g.)
0.01to show 2 decimal places of precision. IfNULL, uses a heuristic that should ensure breaks have the minimum number of digits needed to show the difference between adjacent values.- scale
A scaling factor:
xwill be multiplied byscalebefore formatting.- return
A string of either
"character"or"numeric".- prefix
Additional text to display before the number. The suffix is applied to absolute value before
style_positiveandstyle_negativeare processed so thatprefix = "$"will yield (e.g.)-$1and($1).- suffix
Additional text to display after the number.
- big.mark
Character used between every 3 digits to separate thousands.
- decimal.mark
The character to be used to indicate the numeric decimal point.
- trim
Logical, if
FALSE, values are right-justified to a common width (seebase::format()).- ...
Other arguments passed on to
base::format().
See also
scales::percent