Reputation: 8288
I'm currently using Apache Zeppelin to do some data visualization stuff, just curious why there're no one providing an interpreter for R. From the documentation it seems that creating a new interpreter shouldn't be too hard, but if it is really that easy, there should already be the interpreters for various languages, so am I wrong?
Upvotes: 3
Views: 5384
Reputation: 5461
EDIT
In new zeppelin, two R Interpreters are integrated into it. So we don't need below steps for latest versions.
Since 0.6.0 is not released we need to clone and built it
R Interpreter 1 (From Datalayer)
$git clone https://github.com/apache/incubator-zeppelin.git
$mvn clean package -Pspark-1.6 -Ppyspark -Phadoop-2.4 -Psparkr -DskipTests
R Interpreter 2
$git clone https://github.com/apache/incubator-zeppelin.git
$mvn clean package -Pspark-1.6 -Ppyspark -Phadoop-2.4 -Pr -DskipTests
More information about these R Interpreters can be found here
For zeppelin versions below 0.6.0 follow LaurentH steps
Try this R Interpreter from datalayer. We've tried it and able to do stuffs with it.
We were able to connect spark and do visualization using it. Said that, there are some few glitches like
Steps to add R interpreter
Hope it helps
Upvotes: 3
Reputation: 21
Tried Samuel Alexander's procedure, but didn't manage to get zeppelin-R-1.0.0-SNAPSHOT.jar. Changing the steps a bit, I got R integrated like this :
Hope it can help.
Upvotes: 2
Reputation: 1
I am trying to use the zeppelin-R interpreter with incubator-zeppelin - could you describe how this interpreter can be recognized by Zeppelin?
I manage to compile and run incubator-zeppelin and could compile zeppelin-R.
Afterwards, I copied the zeppelin-R directory into the incubator-zeppelin root directory and add <module>zeppelin-R</module>
to the pom.xml in the root directory.
I can recompile incubator-zeppelin without problems but the R interpreter does not show up in Zeppelin.
Upvotes: 0