I have a list with different elements inside:
df1 <- data.frame(a = c(1,2,3))
df2 <- data.frame(a = c(1,2,3), b = c("a","b","c"))
df3 <- data.frame(col = c("a","c","f","h","j"), col1 = c("a1","c2","f3","h4","j5"))
aList <- list(df1,df2,df3)
I would like to have one data frame for each element of the list. Basically I would like that aList to be back to df1, df2, and df3.
 
    