tibble_as_list {dynutils} | R Documentation |
Convert a tibble to a list of lists
tibble_as_list(tib)
tib |
A tibble |
A list with the same number of lists as there were rows in tib
list_as_tibble extract_row_to_list mapdf
library(tibble)
tib <- tibble(
a = c(1, 2),
b = list(log10, sqrt),
c = c("parrot", "quest"),
.object_class = list(c("myobject", "list"), c("yourobject", "list"))
)
li <- tibble_as_list(tib)
li