rounder {Rmisc} | R Documentation |
Round to Increment
Description
Rounds a value to nearest increment
Usage
rounder(x, inc, fun = "round")
Arguments
x |
The value to be rounded |
inc |
The increment to round to |
fun |
The rounding function. Valid options are 'floor', 'round' and 'ceiling'. |
Value
an object of class numeric
Examples
rounder(.92, .05)
rounder(.93, .05)
rounder(.93, .05, "floor")
rounder(.93, .05, "ceiling")
[Package Rmisc version 1.5.1 Index]