as.data.frame.H2OFrame | R Documentation |
Downloads the H2O data and then scans it in to an R data frame.
## S3 method for class 'H2OFrame'
as.data.frame(x, ...)
x |
An H2OFrame object. |
... |
Further arguments to be passed down from other methods. |
Method as.data.frame.H2OFrame
will use fread
if data.table package is installed in required version.
use.package
## Not run:
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
as.data.frame(prostate)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.