I have about 6000 data frames with data like so:
over10 over20 over50 over100
2014-01-02 1 1 0 0
Each data frame has hundreds of rows.
I need to sum the four columns across all data frames, by index (the date). The result would be one row per date which contains the summed values. So after 6000 data frames, the result might be:
over10 over20 over50 over100
2014-01-02 3121 2551 1670 985
This would continue with one row per date.
I can easily put the 6000 data frames into a list, or I can rbind into a single big data frame. I have tried various approaches but can't quite get there.