Sentiment Analysis in R
Ted Kwartler
Data Dude

dplyr joins    
inner_join(x, y, ...)
left_join(x, y, ...)
right_join(x, y, ...)
full_join(x, y, ...)
semi_join(x, y, ...)
anti_join(x, y, ...)
Declaring the by parameter: 
inner_join(x, y, by = "shared_column")
or
inner_join(x, y, by = c("a" = "b"))

inner_join(
  text_table,
  subjectivity_lexicon,
  by = "word_column"
)

anti_join(
  text_table,
  stopwords_table,
  by = "word_column"
)

Sentiment Analysis in R