rcaller icon indicating copy to clipboard operation
rcaller copied to clipboard

A Java library for calling R.

Results 8 rcaller issues
Sort by recently updated
recently updated
newest added

Your code has problems when a temp file "Routput" has special character with accents. I found this error and I want to contribute to fix it. can you invite me...

I created a folder and started to give some examples on using RCaller in other JVM languages (The first example is in Clojure). We can add some usage examples and...

This code looks valid to me but fails to run ``` Globals.R_current = "/usr/local/bin/R" Globals.Rscript_current= "/usr/local/bin/RScript" val code = RCode.create() val rCaller = RCaller.create(code, RCallerOptions.create()) code.addRCode("1+1") rCaller.runOnly() ``` The error...

Hi, my problem seems to be that my R installation, which is not located in C:\Program Files, is not recognized properly. I found a way to make RCaller work, defining...

I have been trying to use the 'semPlot' package within RCaller's functionality but I am receiving an error that there is no package called 'semPlot', leading to the error that...

rcaller code makes the Thread to wait/sleep at some points (which is fine). The problem is that, if the Thread was interrupted, these methods throw an `InterruptedException`, which is caught...

I keep getting this error ![image](https://user-images.githubusercontent.com/23650572/34773643-69863af4-f647-11e7-8191-62b335bb3509.png) everytime I run the Main.java example found on the repo. A help would be great. Thanks! Btw, I added the rcaller 3.1 snapshot jar...

Running the test class in https://github.com/jbytecode/rcaller/blob/master/RCaller/src/test/java/com/github/rcaller/datatypes/DataFrameTest.java in windows 10 fails in two tests as shown below. My best guess is the way that the data frame data is transferred to...