Re: [R] Variance-Covariance matrix from glm()

2006-08-07 Thread gynmeerut
Hello Achim Zeileis, gt; We are trying to find out how to get the variance-covariance matrix of the gt; MLEs out of the glm function. Can anyone help? Please try this : Suppose you have summary(glm(A ~ B,data=abc, family=Gamma)) then use summary(glm(A ~ B,data=abc,

[R] Variance-Covariance matrix from glm()

2006-08-04 Thread Daniel Jeske
We are trying to find out how to get the variance-covariance matrix of the MLEs out of the glm function. Can anyone help? Thanks, Daniel Jeske Department of Statistics University of California Riverside, CA [[alternative HTML version deleted]]

Re: [R] Variance-Covariance matrix from glm()

2006-08-04 Thread Achim Zeileis
On Fri, 4 Aug 2006, Daniel Jeske wrote: We are trying to find out how to get the variance-covariance matrix of the MLEs out of the glm function. Can anyone help? It can be extracted with the corresponding vcov() method. Best, Z __