Skip to content

Instantly share code, notes, and snippets.

View Emaasit's full-sized avatar
🎯
Focusing

Daniel Emaasit Emaasit

🎯
Focusing
View GitHub Profile
## Download h2o from CRAN
## When downloading from CRAN, keep in mind that the initial
## download from CRAN contains only the R package
install.packages("h2o")
library(h2o)
localH2O <- h2o.init()
## To import small iris data file from H2O's package
irisPath = system.file("extdata", "iris.csv", package="h2o")
iris.hex = h2o.importFile(localH2O, path = irisPath, key = "iris.hex")