Quiz on tidytext

Quiz yourself on tidytext concepts.

tidytext Concepts

1

How does tidytext recommend removing stopwords?

A)

remove_stop_words(by = "word") %>%

B)

anti_join(stop_words, by = "word") %>%

C)

filter(stop_words, word) %>%

D)

tokens_remove(pattern = stopwords("english")) %>%

Question 1 of 40 attempted

Get hands-on with 1200+ tech skills courses.