I have a list of lists of data.frame
s. A simple way to apply a function to the deepest elements of nested list is with rapply
. However, rapply
is treating the data.frame
s as lists, and thus, attempting to apply the function to every column of each data.frame
. A similar question was asked about mapply
here, but the solution doesn't work for rapply
. Is there any way to prevent rapply
from treating the data.frame
s as lists?
Asked
Active
Viewed 33 times
0

Community
- 1
- 1

atallcosts
- 11
- 4
-
Please provide a minimal working example. – Chrisss Feb 13 '17 at 16:48
-
I think [this post](http://stackoverflow.com/questions/41813353/running-rapply-on-lists-of-dataframes) is pretty close to a duplicate. At a minimum, it should be helpful. – lmo Feb 13 '17 at 16:59