I wonder if there’s a built-in function or concrete way to transform a list of dataframes, say if a list l1 contains df1 and df2,
<code>l1 = list(df1, df2).
</code>
<code>l1 = list(df1, df2).
</code>
l1 = list(df1, df2).
Now I want df1 and df2 respectively, what I could come up is:
<code>df1 <- purrr::chuck(l1, "df1").
df2 <- purrr::chuck(l1, "df2").
</code>
<code>df1 <- purrr::chuck(l1, "df1").
df2 <- purrr::chuck(l1, "df2").
</code>
df1 <- purrr::chuck(l1, "df1").
df2 <- purrr::chuck(l1, "df2").
etc. But this will become a headache in case of a larger list.