What is a List? Vectors and matrices are incredibly useful data structure in R, but they have one distinct limitation: they can store only one type of data. Lists, however, can store multiple types of values at once. A list can contain a numeric matrix, a logical vector, a character string, a factor object and even another list. Create a List
[...]