0

我是第一次使用 Tidytext 中的情感工具,并想使用 Loughran 词典。经过几次尝试,我得到的最接近的是这个错误:

get_sentiments("loughran") get_sentiments("loughran") 中的错误:找不到函数“%>%”

Loughran 是 Tidytext 产品还是必须从外部检索/加载?谢谢你。

4

1 回答 1

0

Loughran 情绪词典位于 GitHub 上但尚未在 CRAN 上的 tidytext 版本中。我们将在不久的将来在 CRAN 上发布一个新版本!同时,您可以使用 devtools 从 GitHub 安装当前开发版本的 tidytext:


library(devtools)
install_github("juliasilge/tidytext")


library(tidytext)
get_sentiments("loughran")
#> # A tibble: 4,149 × 2
#>            word sentiment
#>           <chr>     <chr>
#> 1       abandon  negative
#> 2     abandoned  negative
#> 3    abandoning  negative
#> 4   abandonment  negative
#> 5  abandonments  negative
#> 6      abandons  negative
#> 7     abdicated  negative
#> 8     abdicates  negative
#> 9    abdicating  negative
#> 10   abdication  negative
#> # ... with 4,139 more rows
于 2017-04-07T19:29:53.373 回答