Alex Bertram
Alex Bertram
Package `mclust` is missing the following Fortran builtins: ``` Warning: undefined function _gfortran_sum_r8; may throw exception at runtime Warning: undefined function _gfortran_internal_pack; may throw exception at runtime Warning: undefined function...
Renjin does not currently handle the `importMethodsFrom` NAMESPACE directive. GNU R implements this in [namespace.R](https://github.com/wch/r-source/blob/3d31cf16743c3ca2e9e36df22998676b9aafca90/src/library/base/R/namespace.R#L1024)
As noticed by @kalibera, overflow during conversion from double to integer is not handled correctly. Most basically, the expression `as.integer(2^40)` should overflow to `NA`, not the integer max value. In...
The jdeb-maven plugin we use [supports signed packages](https://github.com/tcurdt/jdeb/blob/master/docs/maven.md). But it appears there's also a [way to sign the whole apt repository](https://github.com/sannies/nexus-apt-plugin/commit/c571ed53dfffcdd98bfc0fe91776ab1a96f7a58c)
In GNU R, `range()` handles arguments of mixed type quite differently than `min` and `max`. Namely, in GNU R finds the widest type of all its arguments, as well as...
Package mzR is [failing](http://packages.renjin.org/package/org.renjin.bioconductor/mzR/2.4.1/build/14) with error message `the member classes must be defined: not true of "C++Object"` during package evaluation.
@ebocher submitted [randomForest model](https://github.com/bedatadriven/renjin-benchmarks/commit/21af1c11d50dec53868f06cdceb9dd8516630688) that was running far more slowly than GNU R: Initial profiling: ``` Function Count Time Own Time % kb Alloc predict 1 72904 0 0% randomForest...
1.) If I try to call javax.script.ScriptEngine#getContext(), then javax.script.ScriptContext#setAttribute(String, String, int) to set a variable, then it is not visible to a user script (Yields org.renjin.eval.EvalException: object 'msg' not found)....
zlib is bundled with R and some packages like [XVectors](http://packages.renjin.org/package/org.renjin.bioconductor/XVector/0.10.0/build/5) link against it. We have two options here: 1. Either compile the original zlibc source with GCC-Bridge 2. Map the...