My goal is to integrate R-Programming Language and I tried my best to do so. But every time I receive the following error.
#packages ‘rmr’, ‘rJava‘, ‘RJSONIO‘, ‘rhdfs’, ‘rhbase’, ‘plyrmr’ are not available (for R version 3.1.3)
These are Steps I followed, Kindly let me know if it is correct or I must try a different way out.
- Installed R, and Hadoop in ubuntu.
- Add these three lines in ~/.bashrc file.
*export HADOOP_PREFIX=/Users/hadoop/hadoop-1.1.2
export HADOOP_CMD=/Users/hadoop/hadoop-1.1.2/bin/hadoop
export HADOOP_STREAMING=/Users/hadoop/hadoop-1.1.2/contrib/streaming/hadoop-streaming-1.1.2.jar*
- Installed R packages by using this command
install.packages(c("rJava", "RJSONIO", "rmr", "rhdfs", "rhbase", "plyrmr").
But I Received the above error. What is the main problem of integrating R and Hadoop?