2024 USA Election Polling Data
2024 U.S.A Generic Ballot Prediction | Trump vs Harris
@kaggle.iamtanmayshukla_2024_u_s_election_generic_ballot_polling_data
2024 U.S.A Generic Ballot Prediction | Trump vs Harris
@kaggle.iamtanmayshukla_2024_u_s_election_generic_ballot_polling_data
Description:
This dataset contains comprehensive voting data for the 2024 US elections, focusing on general ballot measures. This information includes voting results from various sources and tracking public opinion about political parties and candidates across states and demographic groups. Each item in the dataset represents a specific poll. Along with detailed information about the dates of the polls. Survey organization, sample size, margin of error, Percentage of respondents supporting each political party or candidates
Key Features:
Poll Date: The date when the poll was conducted.
Polling Organization: The name of the organization that conducted the poll.
Sample Size: The number of respondents in the poll.
Margin of Error: The statistical margin of error for the poll results.
Party/Candidate Support: Percentage of respondents who support each political party or candidate.
State/Demographics: Geographic and demographic breakdowns of the polling data.
Use Cases:
Analyzing trends in public opinion leading up to the 2024 U.S. elections.
Comparing support for different political parties and candidates over time.
Studying the impact of key events on voter preferences.
Informing political strategies and campaign planning.
CREATE TABLE generic_ballot_polls (
"poll_id" BIGINT,
"pollster_id" BIGINT,
"pollster" VARCHAR,
"sponsor_ids" DOUBLE,
"sponsors" VARCHAR,
"display_name" VARCHAR,
"pollster_rating_id" BIGINT,
"pollster_rating_name" VARCHAR,
"numeric_grade" DOUBLE,
"pollscore" DOUBLE,
"methodology" VARCHAR,
"transparency_score" DOUBLE,
"state" VARCHAR,
"start_date" TIMESTAMP,
"end_date" TIMESTAMP,
"sponsor_candidate_id" VARCHAR,
"sponsor_candidate" VARCHAR,
"sponsor_candidate_party" VARCHAR,
"question_id" BIGINT,
"sample_size" DOUBLE,
"population" VARCHAR,
"subpopulation" VARCHAR,
"population_full" VARCHAR,
"tracking" VARCHAR,
"created_at" VARCHAR,
"notes" VARCHAR,
"url" VARCHAR,
"source" VARCHAR,
"internal" VARCHAR,
"partisan" VARCHAR,
"race_id" BIGINT,
"cycle" BIGINT,
"office_type" VARCHAR,
"seat_number" VARCHAR,
"seat_name" VARCHAR,
"election_date" TIMESTAMP,
"stage" VARCHAR,
"nationwide_batch" BOOLEAN,
"dem" DOUBLE,
"rep" DOUBLE,
"ind" VARCHAR
);Anyone who has the link will be able to view this.