We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you have any recommendations for debugging?
const R = require("r-script"); let results = R("../R/test.R") .data('') .callSync(); console.log(results);
returns null for any R script, including the most basic:
test.r
1+1
I verified with cat to file on the first line of my R code that R is never running, but there is no output even in the verbose debugger.
The text was updated successfully, but these errors were encountered:
Solved my own issue. R wasn't in the PATH, thus causing r-script to fail. However, it'd be very helpful if r-script wasn't silent about this.
Sorry, something went wrong.
No branches or pull requests
Do you have any recommendations for debugging?
returns null for any R script, including the most basic:
test.r
I verified with cat to file on the first line of my R code that R is never running, but there is no output even in the verbose debugger.
The text was updated successfully, but these errors were encountered: