as.matrix.H2OFrame: Convert an H2OFrame to a matrix

View source: R/frame.R

as.matrix.H2OFrameR Documentation

Convert an H2OFrame to a matrix

Description

Convert an H2OFrame to a matrix

Usage

## S3 method for class 'H2OFrame'
as.matrix(x, ...)

Arguments

x

An H2OFrame object

...

Further arguments to be passed down from other methods.

Examples

## Not run: 
library(h2o)
h2o.init()
iris_hf <- as.h2o(iris)
describe <- h2o.describe(iris_hf)
mins = as.matrix(apply(iris_hf, 2, min))
print(mins)

## End(Not run)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.