【问题标题】:Stop words list for rr 的停用词列表
【发布时间】:2020-07-23 04:29:41
【问题描述】:

stopwordstm 包)返回支持不同语言的各种停用词。例如

stopwords()

返回 175 个英语停用词。我想知道是否有一些工具可以提供更多的停用词。

【问题讨论】:

    标签: r text-mining stop-words


    【解决方案1】:

    如果你使用包stopwords,你可以用更长的列表指定源。

    > install.packages("stopwords")
    > library("stopwords")
    > SW = stopwords("en", source = "stopwords-iso")
    
    > length(SW)
    1298
    

    【讨论】:

      猜你喜欢
      • 2015-09-23
      • 2013-02-02
      • 2014-05-10
      • 2021-08-26
      • 2020-07-08
      • 1970-01-01
      • 2013-08-08
      • 2021-02-02
      • 1970-01-01
      相关资源
      最近更新 更多