yannrichet/rsession

Help using Rsession

Closed this issue · 1 comments

Hi,

I need to execute a R command which needs a file taken from user through Java GUI. So, I have File f.
How do I send this file to process R command through Rsession?

File file; // Taken from user
rsession.sendFile(file, "demo");

Thanks!

Rsession r =new RenjinSession();
r.putFile(file,"myfile");