How can you clean your Twitter search results from possible stop words?
data ("stop_words") twitterdata_clean <- twitterdata %>% anti_join(stop_words)
You can also use words = get_stopwords("de") to get the stopwords for a certain language
words = get_stopwords("de")