Background
The dispatch mechanism of the R
functions rbind()
and cbind()
is non-standard. I explored some possibilities of writing rbind.myclass()
or cbind.myclass()
functions when one of the arguments is a data.frame
, but so far I do not have a satisfactory approach. This post concentrates on rbind
, but the same holds for cbind
.
Problem
Let us create an rbind.myclass()
function that simply echoes when it has been called.
rbind.myclass <- function(...) "hello from rbind.myclass"
We create an object of class myclass
, and the following calls to rbind
all
properly dispatch to rbind.myclass()
a <- "abc"
class(a) <- "myclass"
rbind(a, a)
rbind(a, "d")
rbind(a, 1)
rbind(a, list())
rbind(a, matrix())
However, when one of the arguments (this need not be the first one), rbind()
will call base::rbind.data.frame()
instead:
rbind(a, data.frame())
This behavior is a little surprising, but it is actually documented in the
dispatch
section of rbind()
. The advice given there is:
If you want to combine other objects with data frames, it may be necessary to coerce them to data frames first.
In practice, this advice may be difficult to implement. Conversion to a data frame may remove essential class information. Moreover, the user who might be unware of the advice may be stuck with an error or an unexpected result after issuing the command rbind(a, x)
.
Approaches
Warn the user
A first possibility is to warn the user that the call to rbind(a, x)
should not be made when x
is a data frame. Instead, the user of package mypackage
should make an explicit call to a hidden function:
mypackage:::rbind.myclass(a, x)
This can be done, but the user has to remember to make the explicit call when needed. Calling the hidden function is something of a last resort, and should not be regular policy.
Intercept rbind
Alternatively, I tried to shield the user by intercepting dispatch. My first try was to provide a local definition of base::rbind.data.frame()
:
rbind.data.frame <- function(...) "hello from my rbind.data.frame"
rbind(a, data.frame())
rm(rbind.data.frame)
This fails as rbind()
is not fooled in calling rbind.data.frame
from the .GlobalEnv
, and calls the base
version as usual.
Another strategy is to override rbind()
by a local function, which was suggested in S3 dispatching of `rbind` and `cbind`.
rbind <- function (...) {
if (attr(list(...)[[1]], "class") == "myclass") return(rbind.myclass(...))
else return(base::rbind(...))
}
This works perfectly for dispatching to rbind.myclass()
, so the user can now type rbind(a, x)
for any type of object x
.
rbind(a, data.frame())
The downside is that after library(mypackage)
we get the message The following objects are masked from ‘package:base’: rbind
.
While technically everything works as expected, there should be better ways than a base
function override.
Conclusion
None of the above alternatives is satisfactory. I have read about alternatives using S4 dispatch, but so far I have not located any implementations of the idea. Any help or pointers?
data.table
. When the user issueslibrary(data.table)
the package redefines thebase::rbind.data.frame
to dispatch to internal method. It work fordata.table
, but I fear the principle doing this so simultaneously in multiple packages is asking for trouble. In FAQ 2.23 Matt says: "If there is a better solution we will gladly change it." – Enesco