Understat Match Roster Metrics Dataset (EPL 15-24)
In-game roster metrics of every match within EPL, from 2015 to 2024
@kaggle.yarknyorulmaz_understat_match_roster_metrics_dataset_epl_15_24
In-game roster metrics of every match within EPL, from 2015 to 2024
@kaggle.yarknyorulmaz_understat_match_roster_metrics_dataset_epl_15_24
This dataset contains in-game metrics of English Premier League matches between the seasons 2015/2016 to 2023/2024. The dataset is on a roster level and every row represents a player for the given 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_roster_1524 (
"id" BIGINT,
"goals" BIGINT,
"own_goals" BIGINT,
"shots" BIGINT,
"xg" DOUBLE,
"time" BIGINT,
"player_id" BIGINT,
"team_id" BIGINT,
"position" VARCHAR,
"player" VARCHAR,
"h_a" VARCHAR,
"yellow_card" BIGINT,
"red_card" BIGINT,
"roster_in" BIGINT,
"roster_out" BIGINT,
"key_passes" BIGINT,
"assists" BIGINT,
"xa" DOUBLE,
"xgchain" DOUBLE,
"xgbuildup" DOUBLE,
"positionorder" BIGINT,
"match_link" VARCHAR
);
Anyone who has the link will be able to view this.