Preface

If you work in analytics or data science, like we do, you are familiar with the fact that data is being generated all the time at ever faster rates. (You may even be a little weary of people pontificating about this fact.) Analysts are often trained to handle tabular or rectangular data that is mostly numeric, but much of the data proliferating today is unstructured and text-heavy. Many of us who work in analytical fields are not trained in even simple interpretation of natural language.

We developed the tidytext (Silge and Robinson 2016) R package because we were familiar with many methods for data wrangling and visualization, but couldn’t easily apply these same methods to text. We found that using tidy data principles can make many text mining tasks easier, more effective, and consistent with tools already in wide use. Treating text as data frames of individual words allows us to manipulate, summarize, and visualize the characteristics of text easily and integrate natural language processing into effective workflows we were already using.

This book serves as an introduction of text mining using the tidytext package and other tidy tools in R. The functions provided by the tidytext package are relatively simple; what is important are the possible applications. Thus, this book provides compelling examples of real text mining problems.

Outline

We start by introducing the tidy text format, and some of the ways dplyr, tidyr, and tidytext allow informative analyses of this structure.

  • Chapter 1 outlines the tidy text format and the unnest_tokens() function. It also introduces the gutenbergr and janeaustenr packages, which provide useful literary text datasets that we’ll use throughout this book.
  • Chapter 2 shows how to perform sentiment analysis on a tidy text dataset, using the sentiments dataset from tidytext and inner_join() from dplyr.
  • Chapter 3 describes the tf-idf statistic (term frequency times inverse document frequency), a quantity used for identifying terms that are especially important to a particular document.
  • Chapter 4 introduces n-grams and how to analyze word networks in text using the widyr and ggraph packages.

Text won’t be tidy at all stages of an analysis, and it is important to be able to convert back and forth between tidy and non-tidy formats.

  • Chapter 5 introduces methods for tidying document-term matrices and corpus objects from the tm and quanteda packages, as well as for casting tidy text datasets into those formats.
  • Chapter 6 explores the concept of topic modeling, and uses the tidy() method to interpret and visualize the output of the topicmodels package.

We conclude with several case studies that bring together multiple tidy text mining approaches we’ve learned.

  • Chapter 7 demonstrates an application of a tidy text analysis by analyzing the authors’ own Twitter archives. How do Dave’s and Julia’s tweeting habits compare?
  • Chapter 8 explores metadata from over 32,000 NASA datasets (available in JSON) by looking at how keywords from the datasets are connected to title and description fields.
  • Chapter 9 analyzes a dataset of Usenet messages from a diverse set of newsgroups (focused on topics like politics, hockey, technology, atheism, and more) to understand patterns across the groups.

Topics this book does not cover

This book serves as an introduction to the tidy text mining framework along with a collection of examples, but it is far from a complete exploration of natural language processing. The CRAN Task View on Natural Language Processing provides details on other ways to use R for computational linguistics. There are several areas that you may want to explore in more detail according to your needs.

  • Clustering, classification, and prediction: Machine learning on text is a vast topic that could easily fill its own volume. We introduce one method of unsupervised clustering (topic modeling) in Chapter 6 but many more machine learning algorithms can be used in dealing with text.
  • Word embedding: One popular modern approach for text analysis is to map words to vector representations, which can then be used to examine linguistic relationships between words and to classify text. Such representations of words are not tidy in the sense that we consider here, but have found powerful applications in machine learning algorithms.
  • More complex tokenization: The tidytext package trusts the tokenizers package (Mullen 2016) to perform tokenization, which itself wraps a variety of tokenizers with a consistent interface, but many others exist for specific applications.
  • Languages other than English: Some of our users have had success applying tidytext to their text mining needs for languages other than English, but we don’t cover any such examples in this book.

About this book

This book is focused on practical software examples and data explorations. There are few equations, but a great deal of code. We especially focus on generating real insights from the literature, news, and social media that we analyze.

We don’t assume any previous knowledge of text mining. Professional linguists and text analysts will likely find our examples elementary, though we are confident they can build on the framework for their own analyses.

We do assume that the reader is at least slightly familiar with dplyr, ggplot2, and the %>% “pipe” operator in R, and is interested in applying these tools to text data. For users who don’t have this background, we recommend books such as R for Data Science. We believe that with a basic background and interest in tidy data, even a user early in their R career can understand and apply our examples.

Using code examples

This book was written in RStudio using bookdown. The website is hosted via Netlify, and automatically built after every push by GitHub Actions. While we show the code behind the vast majority of the analyses, in the interest of space we sometimes choose not to show the code generating a particular visualization if we’ve already provided the code for several similar graphs. We trust the reader can learn from and build on our examples, and the code used to generate the book can be found in our public GitHub repository. We generated all plots in this book using ggplot2 and its light theme (theme_light()).

This version of the book was built with R version 4.3.2 (2023-10-31) and the following packages:

package version source
bookdown 0.37 RSPM
dplyr 1.1.4 RSPM
forcats 1.0.0 RSPM
ggforce 0.4.1 RSPM
ggplot2 3.4.4 RSPM
ggraph 2.1.0 RSPM
gutenbergr 0.2.4.9000 Github (ropensci/gutenbergr@96cf4f5d06b3106d32f6720ac32172540f4cd65f)
igraph 2.0.1.1 RSPM
janeaustenr 1.0.0 RSPM
jsonlite 1.8.8 RSPM
lubridate 1.9.3 RSPM
mallet 1.3.0 RSPM
Matrix 1.6-1.1 CRAN (R 4.3.2)
quanteda 3.3.1 RSPM
readr 2.1.5 RSPM
reshape2 1.4.4 RSPM
sessioninfo 1.2.2 RSPM
stringr 1.5.1 RSPM
styler 1.10.2 RSPM
textdata 0.4.4 RSPM
tidyr 1.3.1 RSPM
tidytext 0.4.1 RSPM
tidyverse 2.0.0 RSPM
tm 0.7-11 RSPM
topicmodels 0.2-16 RSPM
widyr 0.1.5 RSPM
wordcloud 2.6 RSPM
XML 3.99-0.16.1 RSPM

Acknowledgements

We are so thankful for the contributions, help, and perspectives of people who have moved us forward in this project. There are several people and organizations we would like to thank in particular.

We would like to thank Os Keyes and Gabriela de Queiroz for their contributions to the tidytext package, Lincoln Mullen for his work on the tokenizers package, Kenneth Benoit for his work on the quanteda package, Thomas Pedersen for his work on the ggraph package, and Hadley Wickham for his work in framing tidy data principles and building tidy tools. We would also like to thank rOpenSci, which hosted us at the unconference where we began work, and the NASA Datanauts program, for the opportunities and support they have provided Julia during her time with them.

We received thoughtful, thorough technical reviews that improved the quality of this book significantly. We would like to thank Mara Averick, Carolyn Clayton, Simon Jackson, Sean Kross, and Lincoln Mullen for their investment of time and energy in these technical reviews.

This book was written in the open, and several people contributed via pull requests or issues. Special thanks goes to those who contributed via GitHub pull requests (in alphabetical order by username): Alper Yilmaz (@alperyilmaz), Alison Presmanes Hill (@apreshill), Christoph Molnar (@christophM), Denis Maciel (@denismaciel), Greg Botwin (@greg-botwin), Halian Vilela (@halian-vilela), Ilari Scheinin (@ilarischeinin), J.J. Allaire (@jjallaire), Jamie Lendrum (@jl5000), Jon Calder (@jonmcalder), Kanishka (@kanishkamisra), Luis de Sousa (@luisdza), Mark Beveridge (@mbeveridge), Matthew Henderson (@MHenderson), Michael Chirico (@MichaelChirico), Nina Jakobsen (@nmjakobsen), Timothy James Dobbins (@tmthyjames), Yihui Xie (@yihui), Yu-Wen Pu (@yuwen41200).

Finally, we want to dedicate this book to our spouses, Robert and Dana. We both could produce a great deal of sentimental text on this subject but will restrict ourselves to heartfelt thanks.