Nothing
dict_path <- function() {
path <- Sys.getenv("ELBIRD_DICTIONARY_HOME")
if (nzchar(path)) {
normalizePath(path, mustWork = FALSE)
} else {
normalizePath(file.path(system.file("", package = "elbird"), "dicts"),
mustWork = FALSE)
}
}
dict_stopwords_path <- function() {
normalizePath(file.path(dict_path(), "stopwords.txt"), mustWork = FALSE)
}
dict_user_path <- function() {
normalizePath(file.path(dict_path(), "stopwords.txt"), mustWork = FALSE)
}
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.