CSE 6040 - 7.2 - Tibbles(Tidy Tables) & Bits - Concepts Flashcards
1
Q
A Tibble is in canonical order if it has the following properties.
- The variables appear in _____ order by name, _______ from left to right.
- The ______ appear in lexicographically sorted order by variable, ascending from top to bottom.
- The row _____ (Y.index) go from 0 to n-1, where n is the number of observations.
A
A Tibble is in canonical order if it has the following properties.
- The variables appear in sorted order by name, ascending from left to right.
- The rows appear in lexicographically sorted order by variable, ascending from top to bottom.
- The row labels (Y.index) go from 0 to n-1, where n is the number of observations.
2
Q
A