Baselight

All Time F1 Grand Prix Winners

The best drivers ever, what about win percentage and total wins ?

@kaggle.pierregraef_all_time_f1_grand_prix_winners

Loading...
Loading...

About this Dataset

All Time F1 Grand Prix Winners

This dataset provides a detailed overview of the most successful Formula 1 drivers based on the number of wins they achieved in Grand Prix races. It includes a comprehensive list of drivers, their nationalities, the period during which they were active, and their participation and win statistics, along with win percentages. The data was sourced from the French Wikipedia page for Formula 1 drivers' rankings, which offers more detailed information than the English version.

You can check my web scrapping notebook in Code.

This dataset can be used for:

Exploratory Data Analysis (EDA): Analyze the distribution of wins, participation rates, and driver nationalities.
Predictive Modeling: Predicting the likelihood of winning races based on historical data.
Sports Analytics: Conduct detailed analyses on the evolution of drivers’ performances over time and across different F1 seasons.

Tables

All Time Grand Prix Winners

@kaggle.pierregraef_all_time_f1_grand_prix_winners.all_time_grand_prix_winners
  • 10.51 KB
  • 115 rows
  • 8 columns
Loading...

CREATE TABLE all_time_grand_prix_winners (
  "ranking" BIGINT,
  "driver" VARCHAR,
  "nationality" VARCHAR,
  "participations" BIGINT,
  "wins" BIGINT,
  "win_percentage" DOUBLE,
  "start" BIGINT,
  "end" VARCHAR
);

Share link

Anyone who has the link will be able to view this.