EPL Teams - Twitter Sentiment Dataset
Twitter Sentiment about Teams in the English Premier League
@kaggle.wjia26_epl_teams_twitter_sentiment_dataset
Twitter Sentiment about Teams in the English Premier League
@kaggle.wjia26_epl_teams_twitter_sentiment_dataset
Contains tweets of all teams in the English Premier League with their team hashtag. i.e. #Arsenal, #Chelsea.
Useful for analysing certain events and how they affect supporter behaviour/sentiments.
I've added an additional field called polarity which has the sentiment computed from the text field.
Feel free to explore! Feedback is much appreciated!
Each row represents a tweet. Creation Dates of Tweets Range from 12/07/2020 to 19/09/2020. Will update on a Monthly cadence.
Thanks to the tweepy package for making the data extraction via Twitter API so easy.
Feel free to checkout my blog if you want to learn how I built the datalake via AWS or for other data shenanigans.
Here's an App I built using a live version of this data.
CREATE TABLE n_2020_07_09_till_2020_09_19 (
"created_at" TIMESTAMP,
"file_name" VARCHAR,
"followers" BIGINT,
"friends" BIGINT,
"group_name" VARCHAR,
"location" VARCHAR,
"retweet_count" BIGINT,
"screenname" VARCHAR,
"search_query" VARCHAR,
"text" VARCHAR,
"twitter_id" BIGINT,
"username" VARCHAR,
"polarity" DOUBLE,
"partition_0" VARCHAR,
"partition_1" VARCHAR
);CREATE TABLE n_2020_09_20_till_2020_10_13 (
"created_at" TIMESTAMP,
"file_name" VARCHAR,
"followers" BIGINT,
"friends" BIGINT,
"group_name" VARCHAR,
"location" VARCHAR,
"retweet_count" BIGINT,
"screenname" VARCHAR,
"search_query" VARCHAR,
"text" VARCHAR,
"twitter_id" BIGINT,
"username" VARCHAR,
"polarity" DOUBLE,
"partition_0" VARCHAR,
"partition_1" VARCHAR
);Anyone who has the link will be able to view this.