bedatadriven / renjin

JVM-based interpreter for the R language for the statistical analysis.
https://www.renjin.org
GNU General Public License v2.0
513 stars 82 forks source link

appropos behavior differens from GNU R #531

Open perNyfelt opened 3 years ago

perNyfelt commented 3 years ago

appropos is behaving differently from GNU R GNU R (3.6) gives:

apropos("max") [1] "cummax" "max" "max.col" "mem.maxNSize" "mem.maxVSize" [6] "pmax" "pmax.int" "promax" "varimax" "which.max"

Whereas Renjin (current master as of 2021-08-11) gives:

apropos("max") character(0)