[R] save the output of summary(lmList(x)) into a dataframe

2009-06-16 Thread Cecilia Carmo
Hi r-helpers! I need to save the output of summary() function that I’ve runned like this: z- lmList(y~x1+x2| x3, na.action=na.omit,data1,subset=year==1999) w-summary(z) The output (w) is something like this: Call: Model: y ~ x1 + x2 | x3 Data: data1 Coefficients: (Intercept)

Re: [R] save the output of summary(lmList(x)) into a dataframe

2009-06-16 Thread milton ruser
Hi Cecilia, Could you send us a reproducible example? cheers milton On Tue, Jun 16, 2009 at 4:29 AM, Cecilia Carmo cecilia.ca...@ua.pt wrote: Hi r-helpers! I need to save the output of summary() function that I’ve runned like this: z- lmList(y~x1+x2| x3,

Re: [R] save the output of summary(lmList(x)) into a dataframe

2009-06-16 Thread Daniel Malter
Hi, your problem has nothing to do with your specific dataset. Further, it is - let's say - suboptimal to push a 5 MB dataset through the mailing list. The posting guides asks to provide an example with self-contained code; this is what Milton has asked for. Such an example is not out of reach for

Re: [R] save the output of summary(lmList(x)) into a dataframe

2009-06-16 Thread Paul Johnson
On Tue, Jun 16, 2009 at 3:29 AM, Cecilia Carmocecilia.ca...@ua.pt wrote: Hi r-helpers! I need to save the output of summary() function that I’ve runned like this: z- lmList(y~x1+x2| x3, na.action=na.omit,data1,subset=year==1999) w-summary(z) The output (w) is something like this: Call: