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) ---

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

2012-04-04 Thread Aziz, Muhammad Fayez
Hi, I am using power.law.fit to get an mle-class object in tmp and print summary(tmp), coef(tmp) and logLik(tmp). I wanted to print the std. error for alpha separately as I want to show these values concisely in a graph legend. coef(summary(tmp)) displays the alpha and std. error jointly, while