round_five_up {dfeR} | R Documentation |
Round five up
Description
Round any number to a specified number of places, with 5's being rounded up.
Usage
round_five_up(number, dp = 0)
Arguments
number |
number to be rounded |
dp |
number of decimal places to round to, default is 0 |
Details
Rounds to 0 decimal places by default.
You can use a negative value for the decimal places. For example: -1 would round to the nearest 10 -2 would round to the nearest 100 and so on.
This is as an alternative to round in base R, which uses a bankers round. For more information see the round() documentation.
Value
Rounded number
Examples
# No dp set
round_five_up(2485.85)
# With dp set
round_five_up(2485.85, 2)
round_five_up(2485.85, 1)
round_five_up(2485.85, 0)
round_five_up(2485.85, -1)
round_five_up(2485.85, -2)
[Package dfeR version 1.0.1 Index]