R: stopwords

From OnnoWiki
Revision as of 12:32, 1 November 2018 by Onnowpurbo (talk | contribs) (Created page with " install.packages("stopwords") # atau install.packages("devtools") devtools::install_github("quanteda/stopwords") head(stopwords::stopwords("de", source = "snowball")...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


install.packages("stopwords")
# atau
install.packages("devtools")
devtools::install_github("quanteda/stopwords")


head(stopwords::stopwords("de", source = "snowball"), 20)
head(stopwords::stopwords("id", source = "stopwords-iso"), 20)
stopwords::stopwords_getsources()
stopwords::stopwords_getlanguages("snowball")
stopwords::stopwords_getlanguages("stopwords-iso")

Pranala Menarik