1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Natural Language Processing in R

Exercise

Explore an R corpus

One of your coworkers has prepared a corpus of 20 documents discussing crude oil, named crude. This is only a sample of several thousand articles you will receive next week. In order to get ready for running text analysis on these documents, you have decided to explore their content and metadata. Remember that in R, a VCorpus contains both meta and content regarding each text. In this lesson, you will explore these two objects.

Instructions

100 XP
  • Print out crude and review the output.
  • Print the content of the 10th article.
  • Print out the ID of the first article in crude.
  • Using the provided for loop, make a vector of the IDs from the corpus.