IRONMAN World Championship - 2022
Analyzing Performance and Demographics in a Triathlon Race
@kaggle.ajkuda_ironman_world_championship_2022
Analyzing Performance and Demographics in a Triathlon Race
@kaggle.ajkuda_ironman_world_championship_2022
The data was gathered from IRONMAN
This dataset provides detailed information about participants in a triathlon race, including their bib numbers, names, countries, genders, division categories, division ranks, overall completion times, overall ranks, swim times, swim ranks, bike times, bike ranks, run times, run ranks, and finish status.
The data captures the performances of individual participants in various segments of the triathlon race and their overall standings, providing valuable insights into their athletic achievements.
CREATE TABLE ironman_wc_2022 (
"bib" BIGINT,
"name" VARCHAR,
"country" VARCHAR,
"gender" VARCHAR,
"div" VARCHAR,
"div_rank" DOUBLE,
"overall_time" VARCHAR,
"overall_rank" DOUBLE,
"swim_time" VARCHAR,
"swim_rank" DOUBLE,
"bike_time" VARCHAR,
"bike_rank" DOUBLE,
"run_time" VARCHAR,
"run_rank" DOUBLE,
"finish_status" VARCHAR
);
Anyone who has the link will be able to view this.