Learn R Programming

h2o (version 2.8.4.4)

rbind.H2OParsedData: Combine H2O Datasets by Rows

Description

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

Usage

## S3 method for class 'H2OParsedData':
rbind(\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 row names. Currently unimplemented.

Value

  • An H2OParsedData object containing the combined ...arguments row-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.rbind = rbind(prostate.hex, prostate.hex)
head(prostate.rbind)

Run the code above in your browser using DataLab