Frage

I am new to both R and Java.I need to know is there any method to load R library from javaclient of Rserve for my project

War es hilfreich?

Lösung

You can run any command with the client that you want to run in R. It is simply communicating over a socket with the server. The server has started an embedded R process that you can communicate with.

RConnection c = new RConnection();
c.eval("library(\"plyr\")")
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top