rounder: Round to Increment

View source: R/rounder.R

rounderR 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")

Rmisc documentation built on May 2, 2022, 5:05 p.m.