Nothing
#' set package options for stopwords
#'
#' Set global options affecting functions across \pkg{stopwords}.
#' @details Currently available options are: \describe{
#' \item{`stopwords_sources`}{character; vector of the stopword source labels.}
#' }
#' @export
#' @keywords internal
stopwords_options <- function() {
options(
stopwords_sources = c(snowball = "data_stopwords_snowball",
"stopwords-iso" = "data_stopwords_stopwordsiso",
misc = "data_stopwords_misc",
smart = "data_stopwords_smart",
marimo = "data_stopwords_marimo",
ancient = "data_stopwords_ancient",
nltk = "data_stopwords_nltk",
perseus = "data_stopwords_perseus")
)
}
# nolint start
# Load options on attach
.onAttach <- function(...) {
stopwords_options()
}
# nolint end
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.