2024 U.S. Election Sentiment On X
Analyze public sentiment and trends from the 2024 U.S. election using real-time
@kaggle.emirhanai_2024_u_s_election_sentiment_on_x
Analyze public sentiment and trends from the 2024 U.S. election using real-time
@kaggle.emirhanai_2024_u_s_election_sentiment_on_x
CREATE TABLE test (
"tweet_id" BIGINT,
"user_handle" VARCHAR,
"timestamp" TIMESTAMP,
"tweet_text" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"retweets" BIGINT,
"likes" BIGINT,
"sentiment" VARCHAR
);
CREATE TABLE train (
"tweet_id" BIGINT,
"user_handle" VARCHAR,
"timestamp" TIMESTAMP,
"tweet_text" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"retweets" BIGINT,
"likes" BIGINT,
"sentiment" VARCHAR
);
CREATE TABLE val (
"tweet_id" BIGINT,
"user_handle" VARCHAR,
"timestamp" TIMESTAMP,
"tweet_text" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"retweets" BIGINT,
"likes" BIGINT,
"sentiment" VARCHAR
);
Anyone who has the link will be able to view this.