Indicator for replacing zero with < (e.g., .000 becomes
< .001). Default is TRUE.
keep_zero
If fmt_small is TRUE, whether to preserve true 0s (e.g.,
0.0000001 becomes <.001, but 0.0000000 stays .000).
output
The output type for the rendered document. One of "latex" or
"html".
max_value
If fmt_small is TRUE and a max_value is supplied,
any value greater than the max_value is replaced with >
(e.g., if max_value = 50, then 60 becomes >49.9). The number of digits
depends on digits.
Details
pad_counts should be used to pad integer numbers. This wraps
base::format() to add a comma separator.
pad_prop should be used to pad decimal numbers between [0,1]. This wraps
fmt_prop() to round to a specified number of digits and optionally
remove the leading zero.
pad_corr should be used to pad decimal numbers between [-1,1]. This wraps
fmt_corr(), and is similar to pad_prop, but accounts for negative numbers
when adding padding.
pad_decimal should be used to pad decimal number that are not bounded. This
wraps fmt_digits() to round to a specified number of decimal places.