Chapter 2 Handling Data
This Chapter will discuss some basic details of handling data. We will go over different types of data representations, and how to go between them using R
(especially using the tidyverse
set of packages).
The learning objectives for this chapter are:
- Readers should be able to distinguish what is
wide-form
data and what islong-form
data. - Readers should be able to convert
wide-form
data tolong-form
, and vice versa (e.g., usingtidyverse
).