Created 06-08-2016 11:29 AM
Hi in my new project i have HDP 2.1.5 and R package is installed already they want me to add some more R packages i have download all required R packages..how can i add this new packages to existing R..actually i am not aware of R..plz suggest me..
tq
Created 06-08-2016 11:39 AM
Generally to install R dependent packages we use below command on R shell.
install.packages(c("rJava", "Rcpp", "RJSONIO", "bitops", "digest","functional", "stringr", "plyr", "reshape2", "dplyr","R.methodsS3", "caTools", "Hmisc"))
For R hdfs packages you need to download the package and installed it like below.
Download packages rhdfs
, rhbase
, rmr2
and plyrmr
from https://github.com/RevolutionAnalytics/RHadoop/wiki and install them
install.packages("<path>/rhdfs_<version>.tar.gz", repos=NULL, type="source") install.packages("<path>/rmr2<version>.tar.gz", repos=NULL, type="source") install.packages("<path>plyrmr_<version>.tar.gz", repos=NULL, type="source") install.packages("<path>/rhbase_<version>.tar.gz", repos=NULL, type="source")
Here is good doc link for R on hadoop.
Created 06-08-2016 11:39 AM
Generally to install R dependent packages we use below command on R shell.
install.packages(c("rJava", "Rcpp", "RJSONIO", "bitops", "digest","functional", "stringr", "plyr", "reshape2", "dplyr","R.methodsS3", "caTools", "Hmisc"))
For R hdfs packages you need to download the package and installed it like below.
Download packages rhdfs
, rhbase
, rmr2
and plyrmr
from https://github.com/RevolutionAnalytics/RHadoop/wiki and install them
install.packages("<path>/rhdfs_<version>.tar.gz", repos=NULL, type="source") install.packages("<path>/rmr2<version>.tar.gz", repos=NULL, type="source") install.packages("<path>plyrmr_<version>.tar.gz", repos=NULL, type="source") install.packages("<path>/rhbase_<version>.tar.gz", repos=NULL, type="source")
Here is good doc link for R on hadoop.
Created 06-08-2016 11:47 AM
Thanks you for reply Jitendra Yadav so i my case i should go for second one like this ?
and one more thing Jitendra Yadav how can open R GUI through my server CLI?
thanks