Since I am fairly new to R, I do not know what the S3 methods and objects are. I found that there are S3 and S4 object systems, and some recommend to use S3 over S4 if possible (http://google-styleguide.googlecode.com/svn/trunk/google-r-style.html). However, I do not know the exact definition of S3 methods/objects.
feedback
|
migrated from stats.stackexchange.com Jul 5 '11 at 13:18
This question came from our site for statisticians, data analysts, data miners and data visualization experts.
|
Most of the relevant information can be found by looking at S3 refers to a scheme of method dispatching. If you've used R for a while, you'll notice that there are In S3, this works by:
To the eye of the beholder, and particularly, the user of your newly created funky model fitting package, it is much more convenient to be able to type There is quite a bit more to it, but this should get you started. There are quite a few disadvantages to this way of dispatching methods based upon an attribute (class) of objects (and C purists probably lie awake at night in horror of it), but for a lot of situations, it works decently. With the current version of R, newer ways have been implemented (S4 and reference classes), but most people still (only) use S3. | |||||||||||||
feedback
|
|
Try
which lists, among others, "residuals.lm" and "residuals.glm". This means when you have fitted a linear model, m, and type
Methods that are called with an object of that class can rely on the object having those members. That's very different from S3 classes, which are just a list of a bunch of elements. With S3 and S4, you call a member function by | |||
|
feedback
|
|
To get you started with S3, look at the code for the
That means that it is an S3 method. In other words, you can have a different
In this case, there's only one method, the default, which is called for anything. You can see the code for that by typing
A much more interesting example is the
Notice that some of the methods have
| |||||
feedback
|
|
I came to this question mostly wondering where the names came from. It appears from this wikipedia article that the name refers to the version of the S Programming Language that R is based on. The method dispatching schemes described in the other answers come from S and are labelled appropriately according to version. | |||
|
feedback
|