I'm trying to define a new data method for a foo class. My foo objects follow the following structure:

setClass(Class = "foo", 
    representation = representation(
        data = "data.frame", 
        id = "character",   
        wl = "numeric"
    )
)

The data method I'm trying to create is actually accessing the contents of the @data slot:

setMethod("data", "foo",
    function(object)
        object@data
)

I've been looking at the section 7.1 of the Writing R Extensions manual, but it only deals with S3 classes. I also had a peek at this post, but without success:

setGeneric("data", function(object, ...) standardGeneric('data'))

setMethod("data", "ANY", utils::data)

setMethod("data", "foo",
  function(object)
    object@data
)

When loading the package:

> data(mtcars)
Error in function (classes, fdef, mtable)  : 
  unable to find an inherited method for function "data", for signature "data.frame"
link|improve this question

78% accept rate
feedback

1 Answer

Pierre,

The first argument of data are ... (no object!), so you need some special considerations for the dispatch. ? dotsMethods discusses that.

Often (e.g. cbind, rbind), a quick & dirty solution is to use S3 method notation for these functions

data.foo <- function (...) {
   x <- list (...) [[1]]
   x@data
} 

However, I guess you are in trouble here because the original data function uses the unevaluated name of the argument, and the error message suggests that it is evaluated (does make sense: how could R know which class the argument has if it doesn't evaluate?) before the original data function is called.

So in the end it may be much easier to use some other name than data () to access your data slot.

(Your wl slot makes me think of wavelengths: if you are setting up a class for spectroscopic data, have a look at hyperSpec - it may provide already what you need).

link|improve this answer
Hi Claudia, and thanks for your answer. I'm of course aware of your work on hyperSpec. I'm indeed setting up a class for spectroscopic data - very much a toy project to learn S4 classes, and test some soil-spectroscopy ideas. You can check it out here, but this is much smaller a project than hyerpSpec! – Pierre Jul 4 '11 at 7:01
Hi Pierre, thanks. As my data slot is rather central, I use [] and [[]] to access it. You'd also be welcome to subclass from hyperSpec (which is the product of me learning S4...) or join the hyperSpec developers. – cbeleites Jul 4 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.