Closed brucecrevensten closed 7 years ago
I read up on the difference between atomic vectors (c()) and lists (list()) here: https://jennybc.github.io/purrr-tutorial/bk00_vectors-and-lists.html
c()
list()
Atomic vectors are for homogenous data, lists are for heterogeneous data. We should probably be using atomic vectors after all.
I read up on the difference between atomic vectors (
c()
) and lists (list()
) here: https://jennybc.github.io/purrr-tutorial/bk00_vectors-and-lists.htmlAtomic vectors are for homogenous data, lists are for heterogeneous data. We should probably be using atomic vectors after all.