[Rd] R-devel 2017-02-15: repeated line in /src/gnuwin32/MkRules.dist

2017-02-15 Thread Avraham Adler
Hello. Unless I am mistakedn, it seems that lines 49 and 72 are copies of each other and only one should be necessary to set the whether or not Windows is 32- or 64-bit. If it were my guess, I'd say lines 48 & 49 are redundant. Thanks, Avi __ R-devel@

[Rd] stats::median

2017-02-15 Thread Rob J Hyndman
The generic stats::median method is defined as median <- function (x, na.rm = FALSE) {UseMethod("median")} I suggest that this should become median <- function (x, na.rm = FALSE, ...) {UseMethod("median")} This would allow additional S3 methods to be developed with additional arguments.