Formats a count together with fraction with special consideration when count is 0
.
Usage
format_count_fraction(x, ...)
Arguments
- x
(integer
)
vector of length 2, count and fraction.
- ...
required for rtables
interface.
Value
A string in the format count (fraction %)
. If count
is 0, the format is 0
.
See also
Other formatting functions:
extreme_format
,
format_auto()
,
format_count_fraction_fixed_dp()
,
format_count_fraction_lt10()
,
format_extreme_values_ci()
,
format_extreme_values()
,
format_fraction_fixed_dp()
,
format_fraction_threshold()
,
format_fraction()
,
format_sigfig()
,
format_xx()
,
formatting_functions
Examples
format_count_fraction(x = c(2, 0.6667))
#> [1] "2 (66.7%)"
format_count_fraction(x = c(0, 0))
#> [1] "0"