Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have implemented a new statistical model in R and it works in my sandbox, but I would like to make it more standard. A good comparison is lm(), where I can take a model object and:

  • apply the summary() function
  • extract the coefficients of the model
  • extract residuals from the fitted (training) data
  • update the model
  • apply the predict() function
  • apply plot() to pre-selected descriptive plots
  • engage in many other kinds of joy

I've looked through the R manuals, searched online, and thumbed through several books, and, unless I'm overlooking something, I can't find a good tutorial on what should go into a new model package.

Although I'm most interested in thorough references or guides, I'll keep this post focused on a question with two components:

  1. What are the key components that are usually expected to be in a model object?
  2. What are typical functions that are usually implemented in a modeling package?

Answers could be from the R Core (or package developers) perspective or from the perspective of users, e.g. users expect to be able to use functions like summary, predict, residuals, coefficients, and often expect to pass a formula when fitting a model.

share|improve this question
@Gavin: Thanks for the code format edits. I am still new to SO, and not yet used to the formatting tools. – Iterator Jul 27 '11 at 19:03

3 Answers

up vote 22 down vote accepted

Put into the object what you think is useful and necessary. I think a more important Question is how do you include this information, as well as how one accesses it.

At a minimum, provide a print() method so the entire object doesn't get dumped to the screen when you print the object. If you provide a summary() method, the convention is to have that object return an object of class summary.foo (where foo is your class) and then provide a print.summary.foo() method --- you don't want your summary() method doing any printing in and of itself.

If you have coefficients, fitted values and residuals and these are simple, then you can store them in your returned object as $coefficients, $fitted.values and $residuals respectively. Then the default methods for coef(), fitted() and resid() will work without you needing to add your own bespoke methods. If these are not simple, then provide your own methods for coef(), fitted.values() and residuals() for your class. By not simple, I mean, for example, if there are several types of residual and you need to process the stored residuals to get the requested type --- then you need your own method that takes a type argument or similar to select from the available types of residual. See ?residuals.glm for an example.

If predictions are something that can be usefully provided, then a predict() method could be provided. Look at the predict.lm() method for example to see what arguments should be taken. Likewise, an update() can be provided if it makes sense to update the model by adding/removing terms or altering model parameters.

plot.lm() gives an example of a method that provides several diagnostics plots of the fitted model. You could model your method on that function to select from a set of predefined diagnostics plots.

If your model has a likelihood, then providing a logLik() method to compute or extract it from the fitted model object would be standard, deviance() is another similar function if such a thing is pertinent. For confidence intervals on parameters, confint() is the standard method.

If you have a formula interface, then formula() methods can extract it. If you store it in a place that the default method searches for, then your life will be made easier. A simple way to store this is to store the matched call (match.call()) in the $call component. Methods to extract the model frame (model.frame()) and model matrix (model.matrix()) that are the data and the expanded (factors converted to variables using contrasts, plus any transformations or functions of the model frame data) model matrix are standard extractor functions. Look at examples from standard R modelling functions for ideas on how to store/extract this information.

If you do use a formula interface, try to follow the standard, non-standard evaluation method used in most R model objects that have a formula interface/method. You can find details of that on the R Developer page, in particular the document by Thomas Lumley. This gives plenty of advice on making your function work like one expects an R modelling function to work.

If you follow this paradigm, then extractors like na.action() should just work if you follow the standard (non-standard) rules.

share|improve this answer
2  
+10 if I could. – Brandon Bertelsen Jul 27 '11 at 19:38
4  
nice answer. I would add profile, confint, simulate, terms, vcov (if they make sense) ... it's also nice if summary returns an object with extended calculations of class summary.foo (i.e. so coef(summary(x)) returns a parameter table with standard errors and p-values) – Ben Bolker Jul 27 '11 at 20:10
Good points @Ben, especially the advice on summary.foo() returning extended computations that can be extracted using standard extractor functions. – Gavin Simpson Jul 27 '11 at 20:12
These are all excellent points. Am I mistaken in believing that there's no document that describes these various methods and objects in detail? The only thing that comes to mind that might be close is the 1992 book "Statistical Models in S". I don't yet have that book, so I can't say; in any case, I'm sure that R syntax has changed a bit since S of 20 years ago. – Iterator Jul 27 '11 at 21:26
1  
@Iterator Not having been an S/S-PLUS user, I'm not that clued up on what the various so-called white, green, etc books introduced. I would venture that S and therefore R's modelling infrastructure is based on the ideas/concepts in the white book. Specific details of their use in R and their R implementation may very well differ from that documented in the white book, so double check with the R help. – Gavin Simpson Jul 28 '11 at 7:49
show 1 more comment

Following up on Gavin's answer, I found this page, also on the developer site, with a long list of useful suggestions.

Also, "An R Companion to Applied Regression", by Fox and Weisberg, has a walk-through of some of the key methods, in Chapter 8. I found that by looking for mentions of model frames in various R books. This book also has a reference to the same page on the R developer site.

share|improve this answer
1  
+1 That is a very useful document, especially when used in conjunction with the Lumley pdf I mention above. – Gavin Simpson Jul 28 '11 at 7:47

This might be another good source.

share|improve this answer
Thanks. A lot of my searches kept producing that card - it has all the right keywords. :) That reference is useful in knowing some other functions that may operate on a model frame. Unfortunately, it doesn't have any deep information. – Iterator Jul 28 '11 at 3:35
1  
@Iterator but it does give you a jumping off point to the code - which is the ultimate source of documentation. Knowing what is available is half the battle - in looking at methods for lm objects, I noticed a proj() generic that I never new existed for example. – Gavin Simpson Jul 28 '11 at 7:46
1  
I much prefer @Gavin's answer above, together with the model-fitting-functions.txt link that Iterator found as well (and note that that is maintained by R core). – Martin Mächler Sep 9 '11 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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