1. सीखें
  2. /
  3. पाठ्यक्रम
  4. /
  5. Introduction to Text Analysis in R

Connected

अभ्यास

Cleaning and counting

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

निर्देश

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.