Reputation: 2893
I want to run a some Java or Scala code from within R (to be more specific, I'd like to run the POJO built by H2O from within R itself). Is there a way to do that? So far I just found solutions for the opposite case, of executing R programs from Java..
Upvotes: 2
Views: 362
Reputation: 177
You should try rJava. This will allow you to call Java class from your R program in a more native fashion. A basic HelloWorld
tutorial is here
Upvotes: 3