F1 Qualification Best Sector Times 2018-2019
Best sector times for all drivers
@kaggle.markjenei_f1_qualification_best_sector_times_20182019
Best sector times for all drivers
@kaggle.markjenei_f1_qualification_best_sector_times_20182019
Some sectors in the calendar share similarities with others. As an F1 qualifying session is the least dependent on external factors, it might be possible to predict qualification results based on the best sector times of previous qualifying results.
The data set contains the best sector times of all drivers in each qualifying day.
https://www.fia.com/events/fia-formula-one-world-championship/season-2018/2018-fia-formula-one-world-championship
https://www.fia.com/events/fia-formula-one-world-championship/season-2019/formula-one
CREATE TABLE f1_quali_sector_times_2018_2019 (
"year" BIGINT,
"grand_prix" VARCHAR,
"sector" BIGINT,
"driver" VARCHAR,
"time" VARCHAR
);
CREATE TABLE f1_quali_sector_times_2018_2019_v2 (
"year" BIGINT,
"grandprix" VARCHAR,
"sector" BIGINT,
"team" VARCHAR,
"driver" VARCHAR,
"time" VARCHAR
);
Anyone who has the link will be able to view this.