scrape v2.0.0 Scrape.Util.Stopwords

Compiles a list of “stopwords” into a list filtering function. “Stopwords” are words that carry not very meaningful on their own and can be skipped when calculating Tags from a text.

Summary

Functions

Filter out stopwords from a given list of words

Functions

remove(list)
remove([String.t]) :: [String.t]

Filter out stopwords from a given list of words.

iex> Scrape.Util.Stopwords.remove([“a”,”nice”,”day”,”again”]) [“nice”,”day”]