H2OFrame
object.h2o.nrow(x)h2o.ncol(x)
## S3 method for class 'H2OFrame':
nrow(x)
## S3 method for class 'H2OFrame':
ncol(x)
dim
for all the dimensions. nrow
for the default R method.library(h2o)
localH2O <- h2o.init()
irisPath <- system.file("extdata", "iris.csv", package="h2o")
iris.hex <- h2o.uploadFile(localH2O, path = irisPath)
nrow(iris.hex)
ncol(iris.hex)
Run the code above in your browser using DataLab