Hong Kong Horse Races From 2013 To 2020
Data about Hong Kong horse racing
@kaggle.jeffreymuller_hong_kong_horse_races_from_2013_to_2020
Data about Hong Kong horse racing
@kaggle.jeffreymuller_hong_kong_horse_races_from_2013_to_2020
I'm sharing my work started few months ago on gathering data about Hong Kong horse races. The initial goal was to perform quantitative analysis over this dataset. I'm convinced we will be stronger together than me alone, so let's share our ideas around this. 😄
races.csv
This CSV data file describes each races that had happened in Hong Kong (only Sha Tin and Happy Valley racecourses have been taken into account here).
Features will be described soon.
performance.csv
This CSV data file describes each horses performance within a race.
Features will be described soon.
I extracted some more data locally that I need to process and format as CSV. This includes:
I will update the dataset from time to time if this interested some people around!
CREATE TABLE performances (
"unnamed_0" BIGINT -- Unnamed: 0,
"horse_id" BIGINT,
"race_id" BIGINT,
"jockey_id" DOUBLE,
"trainer_id" DOUBLE,
"place" DOUBLE,
"number" DOUBLE,
"draw" DOUBLE,
"actual_weight" BIGINT,
"declared_weight" DOUBLE,
"win_odds" DOUBLE,
"finish_time" VARCHAR,
"won" DOUBLE,
"win_dividend" DOUBLE,
"place_dividend" DOUBLE,
"tips_index1" DOUBLE,
"tips_index2" DOUBLE
);
CREATE TABLE races (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"date" TIMESTAMP,
"race_no" BIGINT,
"location" VARCHAR,
"horse_class" VARCHAR,
"distance" BIGINT,
"track_condition" VARCHAR,
"track_type" VARCHAR,
"prize_money" BIGINT,
"section_time" VARCHAR
);
Anyone who has the link will be able to view this.