Re: [Rd] S3 generic/method consistency issue with R CMD check

2012-11-28 Thread Drew Schmidt
More on this. It looks to me like there is some kind of issue specifically with the qr and qr.* functions in R CMD check, as my last email suggests. Additionally, by changing the dispatch of the qr.* functions from y to x (in this example), such as: setGeneric(name="qr.Q", function(x, ...)

[Rd] S3 generic/method consistency issue with R CMD check

2012-11-21 Thread Drew Schmidt
Hi, I'm having some trouble setting methods for the qr family of functions. I believe I have distilled my misunderstanding in the code snippet below: foo <- function(x, ...) UseMethod("foo") foo.default <- function(x) { } # foo setGeneric(name = "foo", useAsDefault = foo) setMethod("foo", s