Session Ready
Exercise

Tokenizing and counting

Explore the content of the airline tweets in twitter_data through word counts. The content of each tweet is in the tweet_text column.

Instructions
100 XP
  • Load the tidyverse and tidytext packages.
  • Tokenize the tweets in the tweet_text column.
  • Compute word counts using the tokenized text.
  • Arrange the counts in descending order.