powered by
This function returns stop words contained in the StopwordsISO repository.
stopwords(lang = "en")
A character vector containing the stop words from the selected language as listed in the StopwordISO repository.
Language for which to retrieve the stop word among those supported. This parameters supports:
three-letter ISO 639-2/3 codes (e.g., 'eng');
'eng'
two-letter ISO639-1 codes ('en');
'en'
names based ISO 639-2 codes ('English' or 'english') and their unambiguous substrings ('engl', 'engli', etc.).
'English'
'english'
'engl'
'engli'
# They all return the correct list of stop words! stopwords('German') stopwords('germ') stopwords('de') stopwords('deu')
Run the code above in your browser using DataLab