construct_round_excel
construct_round_excel.Rd
A function to implement the Excel method of rounding.
Details
Given a decimal, the function will round the value to the specified number of decimal places using the Excel method of rounding (rounding up from .5).
Examples
construct_round_excel(c(1.6, 5.9, 2.5), 0)
#> [1] 2 6 3