mjkallen

Results 5 comments of mjkallen

A little more information based on a first investigation: `getNamespaceInfo(ns, which)` and `.getNamespaceInfo(ns, which)` seem to differ only in the sense that `ns` can be a character string (or symbol)...

@akbertram can you confirm that all changes in this PR have been merged into master as part of https://github.com/bedatadriven/renjin/pull/498?

Try `pmax(fprob[,1], fprob[,2])` since it looks like your trying to find the largest value in each row. If the number of columns is variable, you can do ```r do.call(pmax, lapply(seq(ncol(fprob)),...

Renjin currently uses a version of `merge()` written in pure R to replace the (internal) C implementation from GNU R. See #10. This is probably why performance is not optimal.

Hi Martin, it turns out that my client doesn't like using tables anyway, because they slow things down too much. So for now there is no pressing need to implement...