Tibbles can have a list column
Extracting parts of a tibble with a list column:
## List of 2
## $ :List of 2
## ..$ : num 1
## ..$ : num 2
## $ :List of 3
## ..$ : num 3
## ..$ : num 4
## ..$ : num 5
## List of 2
## $ :List of 2
## ..$ : num 1
## ..$ : num 2
## $ :List of 3
## ..$ : num 3
## ..$ : num 4
## ..$ : num 5
## [1] 5
dplyr::pull()
just takes one variable as argumentpurrr::pluck()
is designed to also take subsequent nested elements.