How to convert r data frame to h2o object

ε祈祈猫儿з 提交于 2019-12-23 06:49:14

问题


Im new to R and H2O and I have tried to find a way to convert r data frame to a h2o object. I have spent some time research on how to do this with no luck. Other way around is possible and well documented as follows.

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

But what i want is complete opposite of this. I wants to convert r "prostate.data.frame" data object converted to h2o object named "prostate.hex". Thanks in advance.


回答1:


Please try this:

prostate.hex <- as.h2o(localH2O, prostate.data.frame, key="prostate.hex")



回答2:


As per h2o version 3.6.0.8, it does not require any parameters. Example:

iris.hex <- as.h2o(iris)



回答3:


The accepted answer is out of date at this point (Jan-22-2016), so here's what works at present day

prostate.hex <- as.h2o(prostate.data.frame, destination_frame="prostate.hex")


来源:https://stackoverflow.com/questions/27553362/how-to-convert-r-data-frame-to-h2o-object

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!