#
library(tidyverse) # This gives us access to dplyr.
library(psych) # This allows us to perform factor analysis.
library(DescTools) # This will let us compute Cronbach's alpha.
library(magrittr) # This allows us to use the double pipe.
TidyData <- read.csv('TidyData.csv', header = TRUE,
stringsAsFactors = FALSE) # Here's the data we'll use.