h2o.signif | R Documentation |
Round doubles/floats to the given number of significant digits.
h2o.signif(x, digits = 6)
signif(x, digits = 6)
x |
An H2OFrame object. |
digits |
Number of significant digits to round doubles/floats. |
Round
for the base R implementation, signif()
.
## Not run:
library(h2o)
h2o.init()
f <- "https://s3.amazonaws.com/h2o-public-test-data/smalldata/coxph_test/heart.csv"
heart <- h2o.importFile(f)
h2o.signif(heart["age"], digits = 3)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.