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
In GNU-R 3.5 the following code illustrates a simple use of capture.output:
> a <- capture.output(print("jabba")) > print(a) [1] "[1] \"jabba\"" >
But in Renjin the same code results in
Renjin 3.5-beta76 Copyright (C) 2019 The R Foundation for Statistical Computing Copyright (C) 2019 BeDataDriven Falling back to pure JVM BLAS libraries. > a <- capture.output(print("jabba")) [1] "jabba" > print(a) character(0) >
[1] "jabba"
character(0)
I.e. capture.output() is not able to capture the output.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In GNU-R 3.5 the following code illustrates a simple use of capture.output:
But in Renjin the same code results in
[1] "jabba"
is unexpectedly being printed on the first lineand
character(0)
being printed after the second line (the print command)I.e. capture.output() is not able to capture the output.
The text was updated successfully, but these errors were encountered: