Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R install package RevoScaleR

In trying to install package "RevoScaleR", I get the following error. I have tried installing this package with various versions of R but get the same error every time. Does anyone have any idea why?

install.packages("RevoScaleR")

Warning in install.packages : package ‘RevoScaleR’ is not available (for R version 3.1.2)

Any help is appreciated.

like image 594
R User Avatar asked Nov 18 '14 16:11

R User


2 Answers

Just to update this post,to install the RevoScaleR package you need to install Microsoft R client, see here for details:

https://www.blue-granite.com/tutorials/sql-server-r-services

R Client includes the ScaleR (rx[…]) functions in the RevoScaleR package. I don't believe this package is open source so isn't available on cran, install.packages() therefore won't work.

like image 194
Morgan Ball Avatar answered Oct 04 '22 08:10

Morgan Ball


The RevoScaleR package is only available if you install the Microsoft R Client or if you use Microsoft RStudio Server via Azure. After you install this you don't need to do install.packages("RevoScaleR") for it is already installed.

R Studio will automatically have the R version [64-bit] C:\Program Files\Microsoft\R Client\R_SERVER under "Global options"

like image 38
edeg Avatar answered Oct 04 '22 09:10

edeg