# Default rounds to nearest even integer
round(2 / 3)[1] 1
# But we can customize to round to 2 digits
round(2 / 3, digits = 2)[1] 0.67
# Or to 3 digits
round(2 / 3, digits = 3)[1] 0.667
# The "default" value is digits = 0
round(2 / 3, digits = 0)[1] 1
