user162579
user162579

Reputation:

Calling Clojure from within R?

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

Answers (2)

cbare
cbare

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

liebke
liebke

Reputation: 376

Check out Rincanter.

Upvotes: 2

Related Questions