将Loughran财务情绪加载到Tidytext

时间:2017-04-07 16:13:42

标签: tidytext

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

  

get_sentiments( “劳伦”)   get_sentiments(“loughran”)出错:找不到函数“%>%”

Loughran是Tidytext提供还是必须从外部检索/加载?谢谢。

1 个答案:

答案 0 :(得分:0)

Loughran情感词典是在GitHub上的tidytext版本,但尚未在CRAN上。我们将在不久的将来在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