1992 U.S Presidential Election
Can you predict which candidate won each U.S county?
@kaggle.jwt0024_1992_us_presidential_election
Can you predict which candidate won each U.S county?
@kaggle.jwt0024_1992_us_presidential_election
CREATE TABLE election_dataset (
"county_name" VARCHAR,
"median_age" DOUBLE,
"mean_savings" BIGINT,
"per_capita_income" BIGINT,
"percent_in_poverty" DOUBLE,
"percent_veterans" DOUBLE,
"percent_female" DOUBLE,
"population_density" DOUBLE,
"percent_in_nursing_homes" DOUBLE,
"crime_index_pc" BIGINT,
"state" VARCHAR,
"clinton_win" BOOLEAN
);
CREATE TABLE election_testing (
"county_name" VARCHAR,
"median_age" DOUBLE,
"mean_savings" BIGINT,
"per_capita_income" BIGINT,
"percent_in_poverty" DOUBLE,
"percent_veterans" DOUBLE,
"percent_female" DOUBLE,
"population_density" DOUBLE,
"percent_in_nursing_homes" DOUBLE,
"crime_index_pc" BIGINT,
"state" VARCHAR,
"clinton_win" BOOLEAN
);
CREATE TABLE election_training (
"county_name" VARCHAR,
"median_age" DOUBLE,
"mean_savings" BIGINT,
"per_capita_income" BIGINT,
"percent_in_poverty" DOUBLE,
"percent_veterans" DOUBLE,
"percent_female" DOUBLE,
"population_density" DOUBLE,
"percent_in_nursing_homes" DOUBLE,
"crime_index_pc" BIGINT,
"state" VARCHAR,
"clinton_win" BOOLEAN
);
Anyone who has the link will be able to view this.