1

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 Answer 1

2

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\")")
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.