View source: R/data_frame_to_list.R
data_frame_to_list | R Documentation |
Utility function for data type conversion.
data_frame_to_list(x)
x |
A data.frame with logical columns representing sets. |
A list of sets.
d <- tibble(name = 1:6,
A = c(rep(TRUE, 5), FALSE),
B = rep(c(FALSE, TRUE), each = 3))
print(d)
data_frame_to_list(d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.