Round doubles/floats to the given number of decimal places.
h2o.round(x, digits = 0)
round(x, digits = 0)Round for the base R implementation, round().
if (FALSE) { # \dontrun{
library(h2o)
h2o.init()
f <- "https://s3.amazonaws.com/h2o-public-test-data/smalldata/coxph_test/heart.csv"
heart <- h2o.importFile(f)
h2o.round(heart["age"], digits = 3)
} # }