powered by
Convert a list of lists to a tibble
list_as_tibble(list_of_rows)
A tibble with the same number of rows as there were elements in list_of_rows
list_of_rows
The list to be converted to a tibble
tibble_as_list extract_row_to_list mapdf
library(purrr) li <- list( list(a = 1, b = log10, c = "parrot") %>% add_class("myobject"), list(a = 2, b = sqrt, c = "quest") %>% add_class("yourobject") ) tib <- list_as_tibble(li) tib
Run the code above in your browser using DataLab