h2o.rbind {h2o} | R Documentation |
Combine H2O Datasets by Rows
Description
Takes a sequence of H2O data sets and combines them by rows
Usage
h2o.rbind(...)
Arguments
... |
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. |
Value
An H2OFrame object containing the combined ... arguments row-wise.
See Also
cbind
for the base R
method, rbind()
.
Examples
## Not run:
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
prostate_rbind <- h2o.rbind(prostate, prostate)
head(prostate_rbind)
dim(prostate)
dim(prostate_rbind)
## End(Not run)
[Package h2o version 3.44.0.3 Index]