I have this list:
list(structure(list(year = numeric(0), quarter = numeric(0), 
    Other = numeric(0), flow = character(0), country = character(0), 
    imfcode = integer(0), ISO3C = character(0)), row.names = integer(0), class = "data.frame"), 
    structure(list(year = numeric(0), Other = numeric(0), flow = character(0), 
        country = character(0), 
 ISO3C = character(0)), row.names = integer(0), 
class = "data.frame"))
Each element of the list is a dataframe, I believe, although class() says that each element is actually a list of a dataframe. I wish to rbind all of these dataframes together. Is there an efficient way to do this? Thank you!
 
    