Rif.jl
Rif.jl copied to clipboard
Julia-to-R interface
This came up in an earlier discussion: https://github.com/JuliaLang/METADATA.jl/pull/1617 Given that this package is quickly becoming the standard way to call R, it may be worthwhile to follow the same naming...
Pull request made by @lgautier at https://bitdeli.com
It's really cool package, and extremely useful. The only problem is, to use this package, I have to guess the meaning of each function it provided, and do many frustrating...
My julia version is 0.4.0-dev+728 and my R version is 3.1.1, compiled with --enable-R-shlib. I always have below problem to use Rif. Anyone has the same problem? julia> using Rif...
Currently, It seems that `v_r = RArray{Float64, 1}(v)` deep copy the content of `v` to `v_r`. For the sake of speed and memory storage, there should be methods to construct...
But, `plot()` works fine: ``` julia> using Rif julia> initr() Using R_HOME=/usr/lib/R 0 julia> R("library(ggplot2)") RArray{ASCIIString,1}(Ptr{Void} @0x0000000006a3b8f8) julia> R("qplot(1:4,1:4,geom=\"point\")") RArray{Sexp,1}(Ptr{Void} @0x0000000006ffefe0) ```
The requirements say: ‹‹ R, compiled with the option --enable-R-shlib ›› Is it essential to compile R myself? require("Rif") gives lots of errors: julia> require("Rif") Warning: replacing module Rif Warning:...
I installed `Rif` earlier. And when I tried to load `Rif`, I got the messages below. In particular, as you can see at the bottom of this post, there is...
Output of functions, printed on R's REPL, are not printed on Julia's REPL. The only way I found for see the output is explicit calling to R's `print()` Other problem...
This package won't run on Windows. The automatic build fails. I tried creating a .dll with the source files for librinterface and can't get it to build using Visual Studio....