tags:

views:

157

answers:

2

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.

+3  A: 

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.

+1  A: 

Check out Rincanter.

liebke