Technical requirements
We will use the Census Income dataset (https://archive.ics.uci.edu/ml/datasets/Adult) for this chapter.
All the code can be found in the book’s GitHub repository: https://github.com/PacktPublishing/Data-Wrangling-with-R/tree/main/Part2/Chapter7.
Before moving forward, make sure to run the following installation requirements if you want to code along with the book’s examples:
# Install package install.packages('data.table') # Load library library(data.table) library(stringr)