Historic Tour De France Dataset
This dataset contains variables regarding each stage of the Tour De France
@kaggle.ralle360_historic_tour_de_france_dataset
This dataset contains variables regarding each stage of the Tour De France
@kaggle.ralle360_historic_tour_de_france_dataset
As of now the race of Tour De France is traveling around France, and different riders have been doing so for many years. I wanted to explore the history of Tour De France from a data perspective. That was my motivation for gathering this dataset.
The dataset contains 2236 stages over 8 different variables:
I want to thank Wikipedia for making their data easy accessible.
Photo by Howard Lawrence B on Unsplash.
I have answer questions of my own in my kernel. There are still lots of questions to answered. Further, one can expand the dataset in many ways.
CREATE TABLE stages_tdf (
"stage" VARCHAR,
"date" TIMESTAMP,
"distance" DOUBLE,
"origin" VARCHAR,
"destination" VARCHAR,
"type" VARCHAR,
"winner" VARCHAR,
"winner_country" VARCHAR
);Anyone who has the link will be able to view this.