extract_row_to_list | R Documentation |
Extracts one row from a tibble and converts it to a list
extract_row_to_list(tib, row_id)
tib |
the tibble |
row_id |
the index of the row to be selected, or alternatively an expression which will be evaluated to such an index |
the corresponding row from the tibble as a list
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.