Understat Match Team Metrics Dataset (EPL 15-24)
In-game team metrics of every match within EPL, from 2015 to 2024
@kaggle.yarknyorulmaz_understat_match_team_metrics_dataset_epl_v16_v24
In-game team metrics of every match within EPL, from 2015 to 2024
@kaggle.yarknyorulmaz_understat_match_team_metrics_dataset_epl_v16_v24
This dataset contains in-game metrics of English Premier League matches between the seasons 2015/2016 to 2023/2024. The dataset is on a team level and every row represents a match.
All data were scraped directly from Understat using scraper-fc library.
I still have many other sources of football data that I want to include within this account, so if you would like to support me, you can buy me a coffee here!
CREATE TABLE understat_match_1524 (
"id" BIGINT,
"fid" BIGINT,
"h" BIGINT,
"a" BIGINT,
"date" TIMESTAMP,
"league_id" BIGINT,
"season" BIGINT,
"h_goals" BIGINT,
"a_goals" BIGINT,
"team_h" VARCHAR,
"team_a" VARCHAR,
"h_xg" DOUBLE,
"a_xg" DOUBLE,
"h_w" DOUBLE,
"h_d" DOUBLE,
"h_l" DOUBLE,
"league" VARCHAR,
"h_shot" BIGINT,
"a_shot" BIGINT,
"h_shotontarget" BIGINT,
"a_shotontarget" BIGINT,
"h_deep" BIGINT,
"a_deep" BIGINT,
"a_ppda" DOUBLE,
"h_ppda" DOUBLE
);
Anyone who has the link will be able to view this.