2017-04-07 6 views
0

私はTidytextの感情ツールをはじめて使用していて、Loughran辞書を使いたいと思います。いくつかの試みの後、私が手に最も近いが、このエラーです:TidytextへのLoughran財政の感情の読み込み

get_sentiments("loughran") Error in get_sentiments("loughran") : could not find function "%>%"

はローランはTidytext製品ですかそれは外部からロード/取得する必要がありますか?ありがとうございました。

答えて

0

Loughranのセンチメント辞書は、GitHubにあるがまだCRANにはないtidytextのバージョンです。近いうちにCRANに新しいバージョンをリリースする予定です!一方で、あなたはデベロッパーツールを使用して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 
+0

はありがとうございました!私のアップ・カウントはカウントされません。申し訳ありません、私はここで新しいです。 – LCC

関連する問題