Exercise

Cleaning and counting

Remove stop words to explore the content of just the airline tweets classified as complaints in twitter_data.

Instructions

100 XP
  • Tokenize the tweets in twitter_data. Name the column with tokenized words as word.
  • Remove the default stop words from the tokenized twitter_data.
  • Filter to keep the complaints only.
  • Compute word counts using the tokenized, cleaned text and arrange in descending order by count.