RCall.jl icon indicating copy to clipboard operation
RCall.jl copied to clipboard

Call R from Julia

Results 136 RCall.jl issues
Sort by recently updated
recently updated
newest added

I cannot install RCall on MacOS Big Sur (11.6). I have tried manually pointing "R_HOME" to my existing R install as well as to a new Conda install, and I...

We are a bit cavalier about passing around raw pointers (sexp) objects, and so we don't always ensure that a reference is kept when doing `ccall`s: this is likely the...

segfaults

I have the following error, which complains about various libraries not being found. However, a check shows that they exist: #### Steps to reproduce: Set up the environment: ``` julia>...

I recently updated my R installation from 3.5.2 to 4.1.1 and am having issues updating Rcall. I set the environment variable as instructed ENV["R_HOME"] = "C:/Program Files/R/R-4.1.1" Pkg.build("RCall") but when...

```julia MethodError: convert(::Type{Union{Missing, RCall.RObject{RCall.VecSxp}}}, ::RCall.RObject{RCall.VecSxp}) is ambiguous. Candidates: convert(::Type{T}, x::T) where T>:Missing in Base at missing.jl:67 convert(::Type{T}, x) where T>:Missing in Base at missing.jl:69 convert(::Type{T}, r::RCall.RObject{S}) where {T, S:Missing, S

This PR adds conversions from/to `NamedTuple`. Seems easier to use than using `Dicts`, even if it uses the same R types underneath. When supplying the names of the `NamedTuple`, it...

```julia julia> ENV["R_HOME"] "/usr/lib64/R" julia> run(`Rscript -e "R.home()"`) [1] "/usr/lib64/R" Process(`Rscript -e 'R.home()'`, ProcessExited(0)) (v1.3) pkg> build RCall Building Conda → `~/.julia/packages/Conda/kLXeC/deps/build.log` Building RCall → `~/.julia/packages/RCall/iojZI/deps/build.log` ┌ Error: Error building...

If I load the R package `units` within a julia task, then Julia crashes with a segfault. ``` using RCall @async begin R"library(units)" end ``` then Julia crashes with a...

segfaults

Error when using RCall from Atom A cordial greeting. I am trying to use Julia in Atom, thanks to Juno (Atom) package. I have the following code: ``` using RCall...