Learn R Programming

plyr (version 1.5.1)

round_any: Round to multiple of any number.

Description

Round to multiple of any number.

Usage

round_any(x, accuracy, f=round)

Arguments

x
numeric vector to round
accuracy
number to round to
f
rounding function: floor, ceiling or round

Examples

Run this code
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)

Run the code above in your browser using DataLab