Formula 1 Drivers Dataset
These guys drive to survive
@kaggle.dubradave_formula_1_drivers_dataset
These guys drive to survive
@kaggle.dubradave_formula_1_drivers_dataset
A dataset from Wikipedia of all Formula 1 drivers. Link to source: https://en.wikipedia.org/wiki/List_of_Formula_One_drivers
The data is accurate as of the 2023 Bahrain Grand Prix. Drivers who only participated in Friday practice and who were not actually entered for the race are not included.
Data features included:
CREATE TABLE f1driversdataset (
"driver" VARCHAR,
"nationality" VARCHAR,
"seasons" VARCHAR,
"championships" DOUBLE,
"race_entries" DOUBLE,
"race_starts" DOUBLE,
"pole_positions" DOUBLE,
"race_wins" DOUBLE,
"podiums" DOUBLE,
"fastest_laps" DOUBLE,
"points" DOUBLE,
"active" BOOLEAN,
"championship_years" VARCHAR,
"decade" BIGINT,
"pole_rate" DOUBLE,
"start_rate" DOUBLE,
"win_rate" DOUBLE,
"podium_rate" DOUBLE,
"fastlap_rate" DOUBLE,
"points_per_entry" DOUBLE,
"years_active" BIGINT,
"champion" BOOLEAN
);
Anyone who has the link will be able to view this.