extract_row_to_list {dynutils} | R Documentation |
Extracts one row from a tibble and converts it to a list
Description
Extracts one row from a tibble and converts it to a list
Usage
extract_row_to_list(tib, row_id)
Arguments
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 |
Value
the corresponding row from the tibble as a list
See Also
list_as_tibble tibble_as_list mapdf
Examples
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))
[Package dynutils version 1.0.11 Index]