2019 Ironman World Championship Results
Rank, race time, and swim / T1 / bike / T2 / run times for each competitor.
@kaggle.andyesi_2019_ironman_world_championship_results
Rank, race time, and swim / T1 / bike / T2 / run times for each competitor.
@kaggle.andyesi_2019_ironman_world_championship_results
Data set containing results from 2019 Ironman World Championship in Kona, Hawaii to help answer the question of which countries produce the fastest overall finish times, as well as fastest swim, bike, and run times.
The data set contains the name of each male and female competitor, the country they are representing, their category (Professional or Age Group), their overall placing, finish time, and swim / T1 / bike / T2 / run splits.
Coach Cox (www.coachcox.co.uk)
CREATE TABLE n_2019_ironman_world_championship_results (
"bib" BIGINT,
"name" VARCHAR,
"country" VARCHAR,
"gender" VARCHAR,
"division" VARCHAR,
"swim" VARCHAR,
"bike" VARCHAR,
"run" VARCHAR,
"overall" VARCHAR,
"division_rank" VARCHAR,
"gender_rank" VARCHAR,
"overall_rank" VARCHAR,
"t1" VARCHAR,
"t2" VARCHAR
);
Anyone who has the link will be able to view this.