Preface

Welcome to the online home of The Data Preparation Journey: Finding Your Way With R, a forthcoming book published with CRC Press as part of The R Series.

This is a work-in-progress; the most recent update is 2023-05-29.

Fisgard Lighthouse

It is routinely noted that the Pareto principle applies to data science—80% of one’s time is spent on data collection and preparation, and the remaining 20% on the “fun stuff” like modeling, data visualization, and communication.

There is no shortage of material—textbooks, journal articles, blog posts, online courses, podcasts, etc.—about the 20%. That’s not to say that there is no material for the other 80%. But it is scattered, found across technique-specific articles and domain-specific books, along with Stack Overflow questions and miscellaneous blog posts. This book serves as a travel guide: an introduction and wayfinder through some of the scattered resources for readers seeking to understand the core elements of data preparation. Like a lighthouse, it is hoped that it will both guide you in the right direction and keep you from running aground.

The book will introduce the principles of data preparation, framed in a systematic approach that follows a typical data science or statistical workflow. With that context, readers will then work through practical solutions to resolving problems in data using the statistical & data science programming language R. These solutions will include examples of complex real-world data.

In Exploratory Data Analysis, Tukey writes “the analyst of data needs both tools and understanding. The purpose of this book is to provide some of each.” (Tukey 1977, 1) It is my hope that this book accomplishes the same.

You, the reader

You might be an academic, working in the physical sciences, social sciences, or humanities, who is (or will be) analyzing data as part of your research. You might be working in a business setting, where important decisions are being made based on the insights you draw from the data collected as part of interactions with customers. As a public servant, you might be creating the evidence a government or other public agency is using to inform policy and program decisions. The principles and practices described in this book will apply no matter the context.

It is assumed that the reader of this book will have a working knowledge of the fundamental data manipulation functions in R (whether base or tidyverse or packages beyond those) or another programming language that supports that work. If you can filter for specific values in the variables and select the columns you want, know the difference between a character string and a numeric value ("1" or 1), and can create a new variable as the result of a manipulation of others, then we’re on our way.

If you don’t possess that knowledge yet, I would recommend that you work through R for Data Science by Hadley Wickham and Garrett Grolemund (Wickham and Grolemund 2016). This book, freely available at r4ds.had.co.nz, will give you a running start.

While some of the topics covered here may be similar to what you’ll find in R for Data Science and other introductory books and similar resources, it is hoped that the examples in this book add more context and expose you to greater technical challenges.

Outline

SECTION A

Chapter 2: Introduction

  • The origin of data

  • Analyzing data

  • Understanding that data in the wild is different than typical textbook examples

  • Keeping a record of your work

Chapter 2: Foundations

  • Putting the destination first, which will guide decisions along the way

  • Code for reproduciblity: keeping a record of the changes you make

  • Adopting good naming practices

  • Using appropriate and existing classification systems

SECTION B: DATA SOURCES

Chapter 3: Importing data

  • Getting data in a variety of formats, including fixed-width text files and SPSS, SAS, and Stata files

Chapter 4: Data from PDF files

  • Getting data out of a PDF file, whether quantitative or qualitative (text)

Chapter 5: Data from web sources

  • Acquiring data using web APIs and webscraping

Chapter 6: Linking to relational databases

  • Accessing data directly from databases (SQL)

  • The benefits and strengths of relational databases

SECTION C: CLEANING DATA

Chapter 7: Clean data principles

  • Understanding tidy data principles

  • Understanding what makes data “dirty”, and why context matters

  • Serving the research question

Chapter 8: Validation strategies

  • Exploratory data analysis to identify problems

  • Using the {validate} package

Chapter 9: Cleaning techniques

  • Cleaning dates and strings

  • Creating conditional and calculated variables

SECTION D: PREPARING DATA

Chapter 10: Data documentation

  • Creating documentation, including data dictionaries and literate programming

  • Data management strategies

Chapter 11: Making data available

  • Sampling techniques

  • Maintaining anonymity and confidentiality in published data sets

Acknowledgements

I would like to acknowledge everyone who has contributed to the books, articles, blog posts, and R packages cited within.

Some important details

Data in this book

The various data files used in the examples are bundled in the R package {dpjr} (Monkman 2023).

The package website is here: https://monkmanmh.github.io/dpjr/

Instructions for installation and usage can be found at the package site.

The data files used in the examples are covered by various open licenses; details can be found at the “Data licenses” page at the package website.

Source code

The source code for this ebook can be found at this github repository: https://github.com/MonkmanMH/data_preparation_with_r

This book is written in Markdown, using the {bookdown} package (Xie 2021), and published to the web at bookdown.org.

install.packages("bookdown")
# or the development version
# devtools::install_github("rstudio/bookdown")

Cover image

The cover image is a wayfinder close to my home: Fisgard Lighthouse, marking the entrance to Esquimalt Harbour in Victoria, British Columbia, Canada. (Location: https://www.openstreetmap.org/#map=16/48.4307/-123.4477)

The photo was taken by Jeff Hitchcock, and was downloaded from flickr.com; that site notes that the image is licensed under the Creative Commons license Attribution 2.0 Generic (CC BY 2.0).

References

———. 2023. Dpjr: Companion Data for the Book the Data Preparation Journey: Finding Your Way with r.
Tukey, John W. 1977. Exploratory Data Analysis. Addison-Wesley.
Wickham, Hadley, and Garrett Grolemund. 2016. R for Data Science. O’Reilly Media. https://r4ds.had.co.nz/.
Xie, Yihui. 2021. bookdown: Authoring Books and Technical Documents with r Markdown. https://CRAN.R-project.org/package=bookdown.