style_ratio: Style 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.
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.
big.mark
Character used between every 3 digits to separate
hundreds/thousands/millions/etc.
Default is ",", except when decimal.mark = "," when the default is a space.
decimal.mark
The character to be used to indicate the numeric decimal point.
Default is "." or getOption("OutDec")