Returns the number of rows and columns for an H2OFrame object.

# S3 method for H2OFrame
dim(x)

Arguments

x

An H2OFrame object.

See also

dim for the base R method.

Examples

if (FALSE) {
library(h2o)
h2o.init()

iris_hf <- as.h2o(iris)
dim(iris_hf)
}