Hello.
I was trying to install h20 package in R, but I received an error,
Warning in install.packages :
package ‘h20’ is not available (for R version 3.2.3)
Further I tried to update R using installr
package, but running
install.packages('installr')
gave me same error that
Warning in install.packages :
package ‘installr’ is not available (for R version 3.2.3)
shubham.jain:
h20 package in R
I guess it is available for this R Version too. I suggest you to manually download the zip file from below link :
R interface for 'H2O', the scalable open source machine learning platform that offers parallelized implementations of many supervised and unsupervised machine learning algorithms such as Generalized Linear Models (GLM), Gradient Boosting Machines...
Once downloaded , Please try installing it manually.
install.packages(path_to_file, repos = NULL, type=“source”)
Where path_to_file would represent the full path and file name:
On Windows it will look something like this: “C:\RJSONIO_0.2-3.tar.gz”
1 Like