Reputation:
Is there any link between R and Clojure?
I am aware of Incanter, but am ideally looking for an R package for Clojure or any future plans for one, in order to call clojure from within R.
Upvotes: 6
Views: 633
Reputation:
Clojure compiles to Java byte code, so you should be able to do what you want using rJava
. The slightly ugly part would be figuring out what the method signatures are, since rJava
requires the JNI-style method signature.
Upvotes: 4