[R] Storing whole regression results

2012-06-26 Thread Kevin Chang
Hello seasons R users, Is it possible to store a complete regression result into an array? I've already been able to save individual regression coefficients, but would like to store the whole regression results into different arrays through a loop. So that in under different quantiles

Re: [R] Storing whole regression results

2012-06-26 Thread Sarah Goslee
You can store entire regression results in a list, then use lapply() to retrieve individual coefficients as desired. Lists are very powerful for managing odd data formats, and no loops needed. Sarah On Tue, Jun 26, 2012 at 4:19 PM, Kevin Chang kchan...@uoguelph.ca wrote: Hello seasons R users,