
Last chance! 50% off unlimited learning
Sale ends in
Extracts one row from a tibble and converts it to a list
extract_row_to_list(tib, row_id)
the corresponding row from the tibble as a list
the tibble
the index of the row to be selected, or alternatively an expression which will be evaluated to such an index
list_as_tibble tibble_as_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"))
)
extract_row_to_list(tib, 2)
extract_row_to_list(tib, which(a == 1))
Run the code above in your browser using DataLab