I have a tibble with some variables being other tibbles made of doubles. All the tibbles nested within the main tibble have the same number of rows of the main tibble.
I want to unnest all the nested tibbles to get one tibble with each variable being a vector.
%>% unnest() does not work.
Try to unnest this data
data <- tibble(col1 = 1:5, col2 = data.frame(col3 = 1:5, col4 = 5:9))
Notice that I have to unnest all the variables of data.