How to load external r library from Rserve java client

884 views Asked by At

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

1

There are 1 answers

0
Chris Hinshaw On BEST ANSWER

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\")")