correct_ratio | R Documentation |
correct the numbers to a target ratio
correct_ratio(raw, target, digits = 0)
raw |
the raw numbers |
target |
the target ratio |
digits |
the result digits |
corrected number vector
correct_ratio(c(10, 10), c(3, 5))
# support ratio as a float
correct_ratio(c(100, 100), c(0.2, 0.8))
# more numbers
correct_ratio(10:13, c(2, 3, 4, 6))
# with digits after decimal point
correct_ratio(c(10, 10), c(1, 4), digits = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.