powered by
Obtain the standard deviation of a column of data.
h2o.sd(x, na.rm = FALSE)sd(x, na.rm = FALSE)
sd(x, na.rm = FALSE)
An H2OFrame object.
logical. Should missing values be removed?
logical
h2o.var for variance, and sd for the base R implementation.
h2o.var
sd
if (FALSE) { library(h2o) h2o.init() prostate_path <- system.file("extdata", "prostate.csv", package = "h2o") prostate <- h2o.uploadFile(path = prostate_path) sd(prostate$AGE) }
Run the code above in your browser using DataLab