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@
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.