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

# NOT RUN {
h2o.init()
iris.hex <- as.h2o(iris)
dim(iris.hex)
# }