Skip to main content

Tidyverse Skills for Data Science

Section 3.2 Tidy Data Review

Before we move any further, letโ€™s review the requirements for a tidy dataset:
  1. Each variable is stored in a column
  2. Each observation is stored in a row
  3. Each cell stores a single value
We had four tidy data principles in an earlier lesson, where the fourth was that each table should store a single type of information. Thatโ€™s less critical here, as weโ€™ll be working at first with single datasets, so letโ€™s just keep those three tidy data principles at the front of our minds.