Learn R Programming

h2o (version 2.8.4.4)

cbind.H2OParsedData: Combine H2O Datasets by Columns

Description

cbind.H2OParsedData, a method for the cbind generic. Takes a sequence of H2O datasets and combines them by column.

Usage

## S3 method for class 'H2OParsedData':
cbind(\dots, deparse.level = 1)

Arguments

...
A sequence of H2OParsedData arguments. All datasets must exist on the same H2O instance (IP and port) and contain the same number of rows.
deparse.level
Integer controlling the construction of column names. Currently unimplemented.

Value

  • An H2OParsedData object containing the combined ...arguments column-wise.

Examples

Run this code
library(h2o)
localH2O = h2o.init()
prosPath = system.file("extdata", "prostate.csv", package="h2o")
prostate.hex = h2o.importFile(localH2O, path = prosPath)
prostate.cbind = cbind(prostate.hex, prostate.hex)
head(prostate.cbind)

Run the code above in your browser using DataLab