h2o (version 3.2.0.3)

as.data.frame.H2OFrame: Converts a Parsed H2O data into a Data Frame

Description

Downloads the H2O data and then scans it in to an R data frame.

Usage

## S3 method for class 'H2OFrame':
as.data.frame(x, ...)

Arguments

x
An H2OFrame object.
...
Further arguments to be passed down from other methods.

Examples

Run this code
localH2O <- h2o.init()
prosPath <- system.file("extdata", "prostate.csv", package="h2o")
prostate.hex <- h2o.uploadFile(localH2O, path = prosPath)
as.data.frame(prostate.hex)

Run the code above in your browser using DataLab