I have generated a loop using lapply. When I run the loop I get the tibbles like like this these two examples, but to save the space, I didn't address 10 tibbles here
 Color  Variables   value
    Yellow  A   12
    Red B   11
    Blue    B   4
    …   …   …
    Color   Variables   value
    Red R   6
    Black   N   8
    Green       10
So I have 10 tibbles consecutively which have been generated by the lapply.
Now, I want to get a data frame for each. So I will have 10 data frames, like df1,df2,df3,...
The outcome for the first tibble is: df1
Color   Variables   value
Yellow  A   12
Red B   11
Blue    B   4Or for the second table is :
df2
Color   Variables   value
Red R   6
Black   N   8
Green       10So I get dfs, df1... df10
 
    