I have a rather complex list of lists of data frames that I want to unnest and make a simple data frame from, with each column representing a column in the nested data frames. The data looks like this:
"percents" is the name of the entire list of 93 elements. Each element is a list of 4 data frames, each with 19 variables. Every time I try to unnest it, I get an error that says "no applicable method for unnest applied to an object of class list". What do I have to do to get this to unnest itself?