I am having some trouble trying to figure this out.
I have a list of 3 dataframes:
list_of_dataframes = list(iris, trees, mtcars)
I need to use mapply
to return a list where:
the first element is the first column of the first dataframe of list_of_dataframe
the second element is the second column of the second dataframe of list_of_dataframe
the third element is the third column of the third dataframe of list_of_dataframe
If you want atomic vectors returned, it would be
But if you want single column data frames returned, you can do
or just use
SIMPLIFY = FALSE
inmapply()
. And alternatively, you can usesubset()
.