rcaller
                                
                                 rcaller copied to clipboard
                                
                                    rcaller copied to clipboard
                            
                            
                            
                        Exception in thread "main" java.lang.ExceptionInInitializerError
I keep getting this error
 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 in the libraries.
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 in the libraries.
You need to tell RCaller where your executables are. So add something like
String pathToRScript = "E:\\R\\R-3.5.1\\bin\\Rscript.exe";
String pathToR = "E:\\R\\R-3.5.1\\bin\\R.exe";
RCallerOptions options = RCallerOptions.create(pathToRScript, pathToR, FailurePolicy.RETRY_1, 3000l, 100l, RProcessStartUpOptions.create());
RCaller caller = RCaller.create(options);
@bclarens @tomgrille is this issue solved?