Plot Sentiment Arc
plot_sentiment_arc.RdCreates a line chart showing how sentiment evolves line by line through the song, with optional smoothing.
Arguments
- lyrics_obj
Lyrics object from
get_lyrics()- method
Sentiment method:
"afinn","bing", or"nrc". Default"afinn"- smooth
Logical; add smoothing line? Default
TRUE
Examples
if (FALSE) { # \dontrun{
lyrics <- get_lyrics("Taylor Swift", "Anti-Hero")
plot_sentiment_arc(lyrics)
# Without smoothing
plot_sentiment_arc(lyrics, smooth = FALSE)
} # }