R/proust_stop_words.R

Defines functions proust_stopwords

Documented in proust_stopwords

#' Stop Words
#'
#' Stop words concatenated from various web sources.
#' 
#' @return a tibble with stopwords
#' @source \url{https://raw.githubusercontent.com/stopwords-iso/stopwords-fr/master/stopwords-fr.txt}
#' 
#' @export
#'
#' @examples
#' proust_stopwords()

proust_stopwords <- function() {
  proustr::stop_words
}
ColinFay/proustr documentation built on May 20, 2019, 2:41 p.m.