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
On Windows, Julia warnings from @warn don't show. This issue has been replicated with Julia v1.9.4 and 1.10.5 on Windows 10. Here is a reprex:
@warn
library(JuliaCall) julia_command('@warn "This is a warning"')
On MacOS, this returns
MacOS
┌ Warning: This is a warning └ @ Main none:1
But on Windows nothing is returned.
The text was updated successfully, but these errors were encountered:
The issue remains if you use a custom warning struct:
struct
julia_code( ' struct JuliaWarning msg::String end function warning_convergence(w::JuliaWarning) println("Warning: ", w.msg) end ' )
We run the warning with
julia_command('warning_convergence(JuliaWarning("The particle filter failed to converge."))')
Warning: The particle filter failed to converge.
Sorry, something went wrong.
See also JuliaInterop/JuliaCall#76
Add convergence warning in R (#14)
f9f6949
Add julia_warning() function (see edwardlavender/patter#14)
051b949
No branches or pull requests
On Windows, Julia warnings from
@warn
don't show. This issue has been replicated with Julia v1.9.4 and 1.10.5 on Windows 10. Here is a reprex:On
MacOS
, this returnsBut on Windows nothing is returned.
The text was updated successfully, but these errors were encountered: