I have nested list of tibbles and would like to convert it to a list of data.frames
starwars %>% select(homeworld , species , birth_year ) %>% nest_by(homeworld, .keep = F) %>% .$data
So in the example above there would be 49 data.frames in a list. How can I do this? It is important that the resulting list must be data.frames not tibbles, as the function I am using only accepts data.frames.