This may be a trivial question, given I only have a few days' experience using R but basically i'd like to create a named list of data frames. I've seen a bunch of questions and answers dealing with only 2 data frames e.g
dataList <- list(x=data.frame1, y=data.frame2)
However i'm working with 48 data frames in this program and would like to know a more elegant way of creating a named list of 48 elements without actually explicitly naming all 48 of my data frames (which is what i've currently got):
dataList <- list(forecasted.data0=forecasted.data0, forecasted.data1=forecasted.data1, ...)
and so on 46 more times.