Nothing
stopwords <- {
function(kind = "en") {
kind <- as.character(kind)
resolved <- map_IETF_Snowball(kind)
base <- if (is.na(resolved))
kind
else if (identical(resolved, "porter"))
"english"
else
resolved
s <- system.file("stopwords", paste0(base, ".dat"),
package = "tm")
if (identical(s, ""))
stop(paste("no stopwords available for '", base, "'", sep = ""))
readLines(s, encoding = "UTF-8")
}
}
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.