Answers for "how to get the round in r"

1

how to get the round in r

floor(x) # rounds to the smallest nearest integer
ceiling(x) # rounds to the largest nearest integer
trunc(x) rounds to the nearest integer in the direction of 0
format(round(x, 2), nsmall = 2)
Posted by: Guest on August-25-2020

Code answers related to "how to get the round in r"

Browse Popular Code Answers by Language