Skip to content

request: most repeated component of a list

3 messages · Muhammad Azam, jim holtman, Adam D. I. Kramer

#
If want you want is the summary from all of them, then 'rbind' the
data together into one matrix and analyze it:

totalMat <- do.call(rbind, listOfMatrices)
On Wed, Sep 10, 2008 at 11:49 AM, Muhammad Azam <mazam72 at yahoo.com> wrote:

  
    
#
You might try

apply(t(sapply(l,apply,2,sum)),2,sum)

--Adam
On Wed, 10 Sep 2008, Muhammad Azam wrote: