[R] summary.glm objects

Thomas Lumley tlumley at u.washington.edu
Tue Oct 16 17:08:37 CEST 2001


On Tue, 16 Oct 2001 aolinto at bignet.com.br wrote:

> Dear R-list members,
>
> I´m trying to run a S-plus source (diag.norm) from
> http://www.ime.usp.br/~giapaula/programas.html in R
>
> I´m having problems in the following lines:
>
> lms <- summary(fit.model) # fit.model is a glm from gaussian
> family
> s <- lms$sigma
>
> It seems that sigma is not a summary.glm object in R, isn´t
> it? (s is NULL)
>

It is a summary.glm object. They have a different structure in R. The
dispersion parameter is lms$dispersion, which is the square of the
residual standard deviation for a linear model, so you want

  s<-sqrt(lms$dispersion)


	-thomas

Thomas Lumley			Asst. Professor, Biostatistics
tlumley at u.washington.edu	University of Washington, Seattle

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._



More information about the R-help mailing list