I scraped the tweets that mention the word “buckeyes” on Sat…

I scraped the tweets that mention the word “buckeyes” 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.  Approximately what time did the game start based on the interactions? Enter your answer as the number of the hour (i.e., 8 am is entered as 8 and 5 pm is entered as 17)?    

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() + ??????????