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

Call R from Julia

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

Hi: I was met the error following: ![图片](https://user-images.githubusercontent.com/53716512/184785586-fc72e592-8730-47ba-b7ac-de049a9f6779.png) Thamnks so much!

Hey folks, I don't know if I missed it in the docs but I did not see how to install a R package through Rcall. I posted a SO question...

Hi, I'm trying to install RCall package inside Julia using command Pkg.build("RCall") after setting the path for environment variable R_HOME. I run into following issue. Error building `RCall`: ERROR: LoadError:...

Is it possible to show `ggplot2` plots in the Juno plot pane? ```julia using RCall, DataFrames @rlibrary ggplot2 df = DataFrame(x=rand(10), y=rand(10)) ggplot(df) + geom_point(aes(x=:x, y=:y)) ``` This plot is...

Hello, RCall.jl is such a great package that I use it everyday. Thank you all the contributors so much for the great work. I encountered the issue when using RCall.jl...

I am currently attempting to install some `R` libraries from within `Julia` via `RCall`. It seems to be failing with an error message that looks like this: ``` R> install.packages(c("SqlRender",...

Hi. Hope this isn't a re-post, but while it seems that I'm able to both build and install RCall, I am unable to load the package. It throws the following...

Often, an R `list` will have multiple class attributes: `- attr(*, "class")= chr [1:3] "class1" "class2" "class3"`. For a single class, `rcopytype(::Type{RClass{:class}}, s::Ptr{VecSxp}) = MyType`seems to work, but is there...

I'm raising this issue to ask for advice on library loading when the RCall session starts up. I have a .Rprofile in my working directory like this: ```R print("inside of...