Tour De France - Rider Information
The dataset contains information about Tour de France stage winners.
@kaggle.zeynepsivri_tour_de_france_rider_information
The dataset contains information about Tour de France stage winners.
@kaggle.zeynepsivri_tour_de_france_rider_information
The data is gathered from Pro Cycling Stats and the individual Wikipedia entries of the riders. Unfortunately, weight and height information is missing for some of them.
The rating for each rider type is determined by race points. Age is calculated based on the rider's age at the time of winning the race. In cases where a rider has multiple victories, the year of their best performance by rider type is considered.
İmage: jackmac34
CREATE TABLE tdf_riders (
"rider" VARCHAR,
"general_classification" BIGINT,
"tt" BIGINT,
"sprint" BIGINT,
"climb" BIGINT,
"age" BIGINT,
"weight" DOUBLE,
"height" DOUBLE,
"country" VARCHAR
);Anyone who has the link will be able to view this.