search for: summarylist

Displaying 1 result from an estimated 1 matches for "summarylist".

2009 Feb 10
3
summary of a list
...codes: 0 ?***? 0.001 ?**? 0.01 ?*? 0.05 ?.? 0.1 ? ? 1 Residual standard error: 91.32 on 96 degrees of freedom Algorithm "port", convergence message: both X-convergence and relative convergence (5) It also works if I try to get the summary of the first 5 object of the resultList with: summaryList<-list() for (i in 1:5) { summaryList[[i]]<-summary(resultList[[i]]) } But if I try to get the summary of all the objects of the resultList (there are 35 objects) it doesn't work... I tried: summaryList<-list() > for (i in 1:length(resultList)) + { + summaryList[[i]]<-summary(res...