[R] standard errors

Duncan Murdoch murdoch at stats.uwo.ca
Thu Feb 28 12:30:36 CET 2008


threshold wrote:
> Hi, guess my problem has simple solution. 
> I want to extract ONLY Std. Errors of Max. Lik. estimates
> (my_fit<-mle(object,...)), the same as I can do with estimates by:
> x<-as. matrix(coef(my_fit)).
> I could not find any function similar to 'coef(my_fit)', which extracts only
> Standard Errors. So far all I can do is to type: summary(my_fit) and then
> get the whole output (with Standard Eroros involved).
>
> thank you in advance and best wishes, robert
>
>   
Use coef(summary(my_fit)).  Generally summary() methods don't just print 
results, they return them in a usable form too.

Duncan Murdoch



More information about the R-help mailing list