h2o.cbind | R Documentation |
Takes a sequence of H2O data sets and combines them by column
h2o.cbind(...)
... |
A sequence of H2OFrame arguments. All datasets must exist on the same H2O instance (IP and port) and contain the same number of rows. |
An H2OFrame object containing the combined ... arguments column-wise.
cbind
for the base R
method.
## Not run:
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
prostate_cbind <- h2o.cbind(prostate, prostate)
head(prostate_cbind)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.