get_sentiments: Get a tidy data frame of a single sentiment lexicon

Description Usage Arguments Value Examples

View source: R/sentiments.R

Description

Get specific sentiment lexicons in a tidy format, with one row per word, in a form that can be joined with a one-word-per-row dataset. The "bing" option comes from the included sentiments data frame, and others call the relevant function in the textdata package.

Usage

1
get_sentiments(lexicon = c("bing", "afinn", "loughran", "nrc"))

Arguments

lexicon

The sentiment lexicon to retrieve; either "afinn", "bing", "nrc", or "loughran"

Value

A tbl_df with a word column, and either a sentiment column (if lexicon is not "afinn") or a numeric score column (if lexicon is "afinn").

Examples

1
2
3
4
5
6
7
8
9
library(dplyr)

get_sentiments("bing")

## Not run: 
get_sentiments("afinn")
get_sentiments("nrc")

## End(Not run)

insightdataintel/tidytext documentation built on Aug. 23, 2020, 12:44 a.m.