rounder.Rd
Rounds a value to nearest increment
rounder(x, inc, fun = "round")
The value to be rounded
The increment to round to
The rounding function. Valid options are 'floor', 'round' and 'ceiling'.
an object of class numeric
numeric
rounder(.92, .05) #> [1] 0.9 rounder(.93, .05) #> [1] 0.95 rounder(.93, .05, "floor") #> [1] 0.9 rounder(.93, .05, "ceiling") #> [1] 0.95