c in r creating a list code example
Example: r create a list
# Basic syntax:
list(11, 23, 42) # List of numerics
list(TRUE, FALSE, TRUE) # List of booleans/logicals
list("aa", "bb", "cc") # List of strings
# Note, in R, list and vectors (aka atomic vectors) are both
# one-dimensional objects, but lists can contain mixed type data
# whereas vectors can only contain one type of data
# Note, to make a vector, use: c(11, 23, 42)