Learn R Programming

priceR (version 1.0.2)

round_down_to_nearest: Round prices down to the nearest specified increment

Description

Round prices down to the nearest specified increment

Usage

round_down_to_nearest(amount, to_nearest)

Arguments

amount

Price to be rounded

to_nearest

Increment to which price is to be rounded down to

Examples

Run this code

# Round down to nearest 0.05 (5c)
library(dplyr)
prices <- c(4.45, 5.22, 0.16, 27.88, 112.19)
prices %>% round_down_to_nearest(0.05)


# Round down to nearest $10
prices <- c(4.45, 5.22, 0.16, 27.88, 112.19)
prices %>% round_down_to_nearest(10)

Run the code above in your browser using DataLab