F1 Race By Race (1983-2021)
F1 data, race by race, from 1983 onwards
@kaggle.prajwalsood_f1_race_by_race_19832021
F1 data, race by race, from 1983 onwards
@kaggle.prajwalsood_f1_race_by_race_19832021
F1 data, race by race, from 1983 onwards
Each folder contains data for each race of that season
Collected using data available in public domain
My main goal is to come up with a predictive model for F1 races
CREATE TABLE final (
"unnamed_0" BIGINT -- Unnamed: 0,
"season" BIGINT,
"round" BIGINT,
"circuit_id" VARCHAR,
"weather_warm" BOOLEAN,
"weather_cold" BOOLEAN,
"weather_dry" BOOLEAN,
"weather_wet" BOOLEAN,
"weather_cloudy" BOOLEAN,
"driver" VARCHAR,
"nationality" VARCHAR,
"constructor" VARCHAR,
"grid" BIGINT,
"podium" BIGINT,
"driver_points" BIGINT,
"driver_wins" BIGINT,
"driver_standings_pos" BIGINT,
"constructor_points" BIGINT,
"constructor_wins" BIGINT,
"constructor_standings_pos" BIGINT,
"qualifying_time" DOUBLE,
"driver_age" BIGINT
);CREATE TABLE test_template (
"season" BIGINT,
"round" BIGINT,
"circuit_id" VARCHAR,
"weather_warm" BOOLEAN,
"weather_cold" BOOLEAN,
"weather_dry" BOOLEAN,
"weather_wet" BOOLEAN,
"weather_cloudy" BOOLEAN,
"driver" VARCHAR,
"nationality" VARCHAR,
"constructor" VARCHAR,
"grid" BIGINT,
"podium" BIGINT,
"driver_points" BIGINT,
"driver_wins" BIGINT,
"driver_standings_pos" BIGINT,
"constructor_points" BIGINT,
"constructor_wins" BIGINT,
"constructor_standings_pos" BIGINT,
"qualifying_time" DOUBLE,
"driver_age" BIGINT
);Anyone who has the link will be able to view this.