Download H2O 2.2.1.3

H2O version 2.2.1.3


Downloads

Platform Content Description Instructions Download
Any Zip file For all users on any platform. Getting Started from a Zip File h2o-2.2.1.3.zip


Installation of H2O directly from an R package repository

Platform Cut and paste these commands into R (one line at a time)
Any # The following two commands remove any previously installed H2O packages for R.
# These commands might give error output if H2O is not currently loaded or was not previously installed.
# We can safely ignore any such errors.
detach("package:h2o", unload=TRUE)
remove.packages("h2o")

# Next, we download, install and initialize the H2O package for R.
install.packages("h2o", repos=(c("/R", getOption("repos"))))
library(h2o)
localH2O = h2o.init()

# Finally, let's run a demo to see H2O at work.
demo(h2o.glm)


Documentation

Content Description URL
Full documentation All documentation available for this version. H2O 2.2.1.3 Documentation
R documentation R user documentation available for this version. H2O 2.2.1.3 R Package PDF
Javadoc Java developer documentation available for this version. H2O 2.2.1.3 Javadoc
REST API documentation REST (and JSON) API developer documentation available for this version. (Coming soon)