I scraped 5000 tweets mentioning “hawkeye” from 11/23/21.  T…

I scraped 5000 tweets mentioning “hawkeye” from 11/23/21.  This is the day before the release of the marvel TV show ‘Hawkeye’ on Disney+.  The data is in the file hawkeye.  Find the top 10 words.  There is a word in the top 10 that may cause confusion in a sentiment analysis.  What is the word and why is this an issue?

I scraped the tweets that mention the word “gobucks” on Satu…

I scraped the tweets that mention the word “gobucks” on Saturday 11/20/21 when OSU played MSU in football.  Below is a plot of the positive and negative words according to the bing lexicon by hour.  The code to produce this plot is below.  What did I add to separate the graphs by sentiment?   PREPROCESSING %>% ggplot( aes(x = hour, y = n, fill = sentiment)) + geom_col() + ??????????