Quiz on tidytext

Quiz yourself on tidytext concepts.

We'll cover the following...

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")) %>%


1 / 4
...