I am having trouble figuring out the proper way to define the [, $, and [[ subset operators for an S4 class.
Can anyone provide me with a basic example of defining these three for an S4 class?
|
|
|
Discover the generic so that we know what we are aiming for
Define a simple class
and implement a method
In action:
There are different strategies for supporting the (implicitly) many signatures, for instance you'd likely also want to support logical and character index values, possibly for both i and j. The most straight-forward is a "facade" pattern where each method does some preliminary coercion to a common type of subset index, e.g., There are no conceptual differences for
and
with
|
|||||
|
|
I would do as @Martin_Morgan suggested for the operators you mentioned. I would add a couple of points though: 1) I would be careful about defining a '$' operator to access an S4 slot (unless you intend to access a column from a data.frame which is stored in a specific slot?). The general suggestion is to write accessor functions like getMySlot() and setMySlot() to get the information you need. You can use the @ operator to access data from those slots, although get and set are best as a user interface. Using $ could be confusing for the user, who would probably expect a data.frame. See this S4 tutorial by Christophe Genolini for an in-depth discussion of these issues. If this is not how you intended to use '$', disregard my suggestion (but the tutorial is still a great resource!). 2) If you are defining '[' and '[[' to inherit from another class, like vector, you will also want to define el() (equivalent to [][[1L]], or the first element from a subset []) and length(). I am currently writing a class to inherit from numeric, and numeric methods will automatically try to use these functions from your class. If the class is for a more limited or your own personal use, this may not be a problem. I apologize, I would have left this as a comment, but I'm new to SO and I don't have the rep yet! |
|||
|
|