https://github.com/navdeep-g/h2o-r-examples
H2O-3 Examples in R
https://github.com/navdeep-g/h2o-r-examples
deep-learning gbm glm h2o kmeans machine-learning rstats
Last synced: 4 months ago
JSON representation
H2O-3 Examples in R
- Host: GitHub
- URL: https://github.com/navdeep-g/h2o-r-examples
- Owner: navdeep-G
- Created: 2018-06-20T01:32:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-25T00:37:10.000Z (about 7 years ago)
- Last Synced: 2025-04-13T00:58:43.247Z (about 1 year ago)
- Topics: deep-learning, gbm, glm, h2o, kmeans, machine-learning, rstats
- Language: HTML
- Homepage:
- Size: 56.3 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# H2O R Examples
## [Overview of H2O-3](https://github.com/navdeep-G/h2o-r-examples/blob/master/h2o.pdf)
## Prerequisites for H2O
[H2O-3 Requirements](http://h2o-release.s3.amazonaws.com/h2o/rel-wright/2/docs-website/h2o-docs/welcome.html#requirements)
### Install H2O in R
```
# The following two commands remove any previously installed H2O packages for R.
if ("package:h2o" %in% search()) { detach("package:h2o", unload=TRUE) }
if ("h2o" %in% rownames(installed.packages())) { remove.packages("h2o") }
# Next, we download packages that H2O depends on.
pkgs <- c("RCurl","jsonlite")
for (pkg in pkgs) {
if (! (pkg %in% rownames(installed.packages()))) { install.packages(pkg) }
}
# Now we download, install and initialize the H2O package for R.
install.packages("h2o", type="source", repos="http://h2o-release.s3.amazonaws.com/h2o/rel-wright/4/R")
```