Practice BoW

Given the following texts:

  • t1 <- c("Today will be an awesome day. The best day of the week")
  • t2 <- c("Yesterday was an awesome day. Better than today.")
  • t3 <- c("Tomorrow will be the best day. Better than yesterday and today.")

You have created a word vector:

word_vector <- c("today", "awesome", "day", "best", "week", "yesterday", "better", "tomorrow").

What is one possible bag-of-words vector representation of t3?

This exercise is part of the course

Introduction to Natural Language Processing in R

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise