NFL Twitter Sentiment Analysis
Labelled NFL related tweets | sentiment analysis | scraped from twitter
@kaggle.cammyc_nfl_twitter_sentiment_analysis
Labelled NFL related tweets | sentiment analysis | scraped from twitter
@kaggle.cammyc_nfl_twitter_sentiment_analysis
This dataset contains sentiment-labeled social media posts about NFL teams, specifically focused on tracking fan reactions and public sentiment. Each entry has been processed through a fine-tuned RoBERTa model with custom sports context modifiers to ensure accurate sentiment classification in the context of NFL-specific language and events.
Data was scraped via selenium web scraper
📝 View Code on GitHub
username
: Author of the posttimestamp
: Time of post creation (format: YYYY-MM-DDThh:mm:ss.000Z)text
: Content of the postteam
: NFL team referenced in the postsentiment
: Classified sentiment (positive, negative, or neutral)confidence
: Model's confidence score for the sentiment classification (0-1)roberta_raw_outputs
: Raw probability distributions from the model [negative, neutral, positive]Does not currently have all of the NFL teams, but the dataset will be updated over time and I will soon remove this.
MIT
Note: This dataset contains publicly available social media posts. Users should comply with platform terms of service and privacy considerations.
CREATE TABLE nfl_sentiments (
"username" VARCHAR,
"timestamp" VARCHAR,
"text" VARCHAR,
"team" VARCHAR,
"sentiment" VARCHAR,
"confidence" VARCHAR,
"roberta_raw_outputs" VARCHAR,
"unnamed_7" VARCHAR -- Unnamed: 7,
"unnamed_8" VARCHAR -- Unnamed: 8,
"unnamed_9" VARCHAR -- Unnamed: 9,
"unnamed_10" VARCHAR -- Unnamed: 10,
"unnamed_11" VARCHAR -- Unnamed: 11,
"unnamed_12" VARCHAR -- Unnamed: 12,
"unnamed_13" VARCHAR -- Unnamed: 13,
"unnamed_14" DOUBLE -- Unnamed: 14,
"unnamed_15" VARCHAR -- Unnamed: 15
);
Anyone who has the link will be able to view this.