Description Usage Arguments Value Examples
View source: R/flatten_list_of_lists.R
This function takes a hierarchical structure of lists and extracts all atomic vectors, returning one flat list of all those vectors.
1 |
x |
The list of lists. |
A list of atomic vectors.
1 2 3 4 | ### First create a list of lists
listOfLists <-
list(list(list(1:3, 8:5), 7:7), list(1:4, 8:2));
yum::flatten_list_of_lists(listOfLists);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.