Re: [R] Print std. Error separately from mle-class object

2012-04-04 Thread Aziz, Muhammad Fayez
. Error print(slot(summary(tmp), "m2logL")) # -2 log L: Best, Fayez From: Jeff Newmiller [jdnew...@dcn.davis.ca.us] Sent: Wednesday, April 04, 2012 5:54 PM To: Aziz, Muhammad Fayez; r-help@r-project.org Subject: Re: [R] Print std. Error separately

Re: [R] Print std. Error separately from mle-class object

2012-04-04 Thread Jeff Newmiller
Are you aware that the summary function normally returns a data value that you can extract values from and format to your hearts desire? try str(coef(summary(tmp))) and read ?mle-class (and try to provide a reproducible example next time) ---