FIFA Index Player Ratings Dataset (EPL V16-V24)
FIFA ratings of English Premier League players, versions 16 to 24 inclusive
@kaggle.yarknyorulmaz_fifa_index_player_ratings_dataset_epl_v16_v24
FIFA ratings of English Premier League players, versions 16 to 24 inclusive
@kaggle.yarknyorulmaz_fifa_index_player_ratings_dataset_epl_v16_v24
This dataset contains FIFA ratings of English Premier League players across FIFA editions FIFA 16 through FIFA 24 (inclusive).
All data were scraped directly from FIFAIndex.com using my custom Python scraping library: sportscraper-yarkin
You can use the library yourself to scrape FIFAIndex for any league or version you’re interested in.
CREATE TABLE final_player_stats (
"player_name" VARCHAR,
"team_name" VARCHAR,
"version" VARCHAR,
"ball_control" DOUBLE,
"dribbling" DOUBLE,
"marking" DOUBLE,
"slide_tackle" DOUBLE,
"stand_tackle" DOUBLE,
"aggression" DOUBLE,
"reactions" DOUBLE,
"att_position" DOUBLE -- Att. Position,
"interceptions" DOUBLE,
"vision" DOUBLE,
"composure" DOUBLE,
"crossing" DOUBLE,
"short_pass" DOUBLE,
"long_pass" DOUBLE,
"acceleration" DOUBLE,
"stamina" DOUBLE,
"strength" DOUBLE,
"balance" DOUBLE,
"sprint_speed" DOUBLE,
"agility" DOUBLE,
"jumping" DOUBLE,
"heading" DOUBLE,
"shot_power" DOUBLE,
"finishing" DOUBLE,
"long_shots" DOUBLE,
"curve" DOUBLE,
"fk_acc" DOUBLE -- FK Acc.,
"penalties" DOUBLE,
"volleys" DOUBLE,
"gk_positioning" DOUBLE,
"gk_diving" DOUBLE,
"gk_handling" DOUBLE,
"gk_kicking" DOUBLE,
"gk_reflexes" DOUBLE,
"player_url" VARCHAR
);
Anyone who has the link will be able to view this.