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
Hi everyone,
I'm trying to diagnose a problem in my R package, but it is a little
tricky since it seems to occur only with the Mac OSX CRAN binary build.
My package starts a Rook server and opens a browser. On my own system
(details below), when I build the package, I have no trouble. The Rook
I'm using:
R 2.15.1 (beta), 2012-06-11, svn.rev 59557, x86_64-unknown-linux-gnu
And I normally use:
options("error"=recover)
I recently ran into a problem where when my code called stop(),
recover() was incredibly slow (hours) because it was trying to deparse
an extremely large call. I worked