
Serena Pietruszka Manager • over 8 years ago
Hadoop Tutorials
Hey All,
What's the best Hadoop tutorial you've used? Here are some from IBM:
IBM Analytics for Hadoop (https://console.ng.bluemix.net/#/store/cloudOEPaneId=store&serviceOfferingGuid=9d1411ea-82cf-4ffb-af83-5b225c4c15ad&fromCatalog=true)
IBM Analytics for Hadoop Documentation (https://www.ng.bluemix.net/docs/#services/AnalyticsforHadoop/index.html#analyticsforhadoop)
More Hadoop Tutorials from IBM (http://www-01.ibm.com/software/data/infosphere/hadoop/tutorials.html)
*[Restriction: You are not able to install and use extra R packages. As a consequence, if you follow one of the tutorials: Analyzing big data with Big R (see link below), you cannot complete lessons 4 and 5 because you cannot download extra R packages as instructed.] (http://www-01.ibm.com/support/knowledgecenter/SSPT3X_3.0.0/com.ibm.swg.im.infosphere.biginsights.tut.doc/doc/tut_Mod_BigR.html)
Happy hacking!
Serena
Comments are closed.
4 comments
Takayuki Sato • about 8 years ago
Hi Serena,
Is it possible to install and use extra R packages in Ad hoc R script to run an application?
Thanks in advance,
Takayuki
Weiqiang Zhuang • about 8 years ago
We are looking into this and will get back later.
Vinayak Machan • about 8 years ago
As per the latest email update from ChallengePost
"
More Hadoop Tutorials from IBM [Restriction: You are not able to install and use extra R packages. As a consequence, if you follow one of the tutorials: Analyzing big data with Big R, you cannot complete lessons 4 and 5 because you cannot download extra R packages as instructed.]
"
Weiqiang Zhuang • about 8 years ago
Yes, it is possible to install and use extra R packages through Ad hoc R script application. Here is how:
# create a local dir path for R packages
system("mkdir /home/biblumix/R")
# install the packages
install.packages(pkgs="e1071", repos="http://cran.rstudio.com", lib="/home/biblumix/R")
# add the dir path to the R libpath
.libPaths(c(.libPaths(), "/home/biblumix/R"))
# load the package
library(e1071)
?svm
Thanks.