I have a large list (200.000) entries. Each contains a 16x3 tibble. What is the fastest way to combine all these tibbles to one large tibble instead of the large list?
The list looks like this :
x <- list( a = tibble(some_char = rep("pens", 16),
some_int = rep(1, 16),
some_other_int = rep(14, 16)),
b = tibble(some_char = rep("rubber", 16),
some_int = rep(5, 16),
some_other_int = rep(9, 16)))
)