-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
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
RCall prints R output to command line when calling R package #286
Comments
You could put a semi colon at the end to avoid printing the returned object |
@randy3k I'm having some trouble with this. I've tried both: `reval("
` and also `reval("
` Both do not suppress printing the returned object. Do you see anything I am doing wrong? |
The way Randy suggests can suppress the returned object, so julia won't display the returned RObject. But it doesn't deal with the package startup message displayed by R.
or
|
Oh, it seems that I have misunderstood OP's question. |
@Non-Contradiction This worked well. Sorry for the late reply. Thanks to you and @randy3k. |
Is it possible to suppress printing the text from the R command line REPL when calling an R package from Julia? I'm using RCall in a Julia command line tool and the printed text is a little messy.
The text was updated successfully, but these errors were encountered: