round_any | R Documentation |
Round to multiple of any number
round_any(x, accuracy, f=round)
x |
numeric vector to round |
accuracy |
number to round to |
f |
function to use for round (eg. |
Useful when you want to round a number to arbitrary precision
Hadley Wickham <h.wickham@gmail.com>
round_any(135, 10) round_any(135, 100) round_any(135, 25) round_any(135, 10, floor) round_any(135, 100, floor) round_any(135, 25, floor) round_any(135, 10, ceiling) round_any(135, 100, ceiling) round_any(135, 25, ceiling)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.