R/frame.R
Takes a sequence of H2O data sets and combines them by rows
h2o.rbind(...)
… | A sequence of H2OFrame arguments. All datasets must exist on the same H2O instance (IP and port) and contain the same number and types of columns. |
---|
An H2OFrame object containing the combined … arguments row-wise.
rbind
for the base R
method.
# NOT RUN { library(h2o) h2o.init() prosPath <- system.file("extdata", "prostate.csv", package="h2o") prostate.hex <- h2o.uploadFile(path = prosPath) prostate.cbind <- h2o.rbind(prostate.hex, prostate.hex) head(prostate.cbind) # }