format_fraction {tern} | R Documentation |
Format fraction and percentage
Description
Formats a fraction together with ratio in percent.
Usage
format_fraction(x, ...)
Arguments
x |
(named |
... |
not used. Required for |
Value
A string in the format num / denom (ratio %)
. If num
is 0, the format is num / denom
.
See Also
Other formatting functions:
extreme_format
,
format_auto()
,
format_count_fraction()
,
format_count_fraction_fixed_dp()
,
format_count_fraction_lt10()
,
format_extreme_values()
,
format_extreme_values_ci()
,
format_fraction_fixed_dp()
,
format_fraction_threshold()
,
format_sigfig()
,
format_xx()
,
formatting_functions
Examples
format_fraction(x = c(num = 2L, denom = 3L))
format_fraction(x = c(num = 0L, denom = 3L))
[Package tern version 0.9.5 Index]