Stephan Sahm
Stephan Sahm
```julia julia> reval("1") == reval("1") false ``` I am wondering whether this is intended. Of course there is `rcopy`, but I thought comparison would work on the RObjects as well.
Hello, I just want to report that I run into a segmentation fault when closing Julia again (aftr using RCall). ``` [1847] signal (11.1): Segmentation fault in expression starting at...
RCall `reval` cannot handle empty strings, but instead throws a quite surprising error. ``` julia> using RCall julia> reval("# mycomment") ERROR: UndefVarError: `val` not defined Stacktrace: [1] reval_p(expr::Ptr{RCall.ExprSxp}, env::Ptr{EnvSxp}) @...
I created an [issue at JuliaCall](https://github.com/Non-Contradiction/JuliaCall/issues/216) however after a first inspection, I think it is actually an RCall issue. Concretely something in the following is not raising julia errors when...
RCall fails to handle valid R expressions ```julia julia> using RCall julia> reval("library(tidyverse)") julia> rcopy(reval("aes(x, y)")) ERROR: LoadError: ArgumentError: malformed expression in formula ~x Stacktrace: [1] var"@formula"(__source__::LineNumberNode, __module__::Module, ex::Any) @...
For some julia values, the call method is not supported on R side ```R PlutoUI = julia_eval("using PlutoUI; PlutoUI") PlutoUI$Slider(c(1,2,3)) ``` returns ```julia REvalError: Error: attempt to apply non-function var"#handle_eval_stderr#31"(::Bool,...
starting Julia with the following startup.jl file fails: ```julia atreplinit() do repl try @eval begin using CondaPkg ENV["R_HOME"] = CondaPkg.envdir() * "/lib/R" import Pkg Pkg.build("RCall") using RCall end catch e...
While trying to workaround https://github.com/JuliaParallel/Dagger.jl/issues/478 I came up with the following version which still fails, but for reasons related to `@spawn` in `@spawn lock(() -> fit!(agg(), data), lck)`. ```julia using...
When constructing an easy but kind of complete introductory example, I am running into `ConcurrencyViolationError("lock must be held")`, while the official nested loop example which I adapted it from explicitly...
I just tried to workaround concurrancy bugs by introducing locks, but apparently I am doing something wrong ```julia using Dagger: @spawn using Distributed # add two further julia processes which...