Re: [Rd] Summary methods

2009-11-10 Thread Douglas Bates
On Sun, Nov 8, 2009 at 2:26 PM, Doran, Harold wrote: > I've defined the following for objects of a class called jml > > summary.jml <- function(object, ...){ >        tab <- cbind(Estimate = coef(object), >                        StdError = object$se, >                        Infit = object$Infit,

[Rd] Summary methods

2009-11-08 Thread Doran, Harold
I've defined the following for objects of a class called jml summary.jml <- function(object, ...){ tab <- cbind(Estimate = coef(object), StdError = object$se, Infit = object$Infit, Outfit = object$Outfit) res