style_ratio: Implement significant figure-like rounding for ratios
Description
When reporting ratios, such as relative risk or an odds ratio, we'll often
want the rounding to be similar on each side of the number 1. For example,
if we report an odds ratio of 0.95 with a confidence interval of 0.70 to 1.24,
we would want to round to two decimal places for all values. In other words,
2 significant figures for numbers less than 1 and 3 significant figures 1 and
larger. style_ratio() performs significant figure-like rounding in this manner.
Usage
style_ratio(x, digits = 2)
Arguments
x
Numeric vector
digits
Integer specifying the number of significant
digits to display for numbers below 1. Numbers larger than 1 will be be digits + 1.
Default is digits = 2.