Learn R Programming

h2o (version 3.8.3.3)

as.data.frame.H2OFrame: Converts parsed H2O data into an R data frame

Description

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

Usage

"as.data.frame"(x, ...)

Arguments

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

Examples

Run this code

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

Run the code above in your browser using DataLab