powered by
Convert an H2OFrame to a matrix
# S3 method for H2OFrame as.matrix(x, ...)
An H2OFrame object
Further arguments to be passed down from other methods.
if (FALSE) { library(h2o) h2o.init() iris_hf <- as.h2o(iris) describe <- h2o.describe(iris_hf) mins = as.matrix(apply(iris_hf, 2, min)) print(mins) }
Run the code above in your browser using DataLab