list-data-structure

  1. Nicole Seaman

    YouTube R Programming: Introduction: List Data Structure (R Intro - 02)

    Unlike atomic vectors, list (vectors) are flexible: each element can be a different type (char, integer, numeric, logical or even a sub-list!). List returns the i-th element as a list, while list[] returns the element as a vector. If the element is named, then list[["name"]] = list[] =...
Top