FIFA 20 Complete Player Dataset For Manager Mode
19k+ players ,70+ attributes extracted from sofifa.com
@kaggle.balaaje_fifa_20_complete_player_dataset_for_manager_mode
19k+ players ,70+ attributes extracted from sofifa.com
@kaggle.balaaje_fifa_20_complete_player_dataset_for_manager_mode
The datasets provided include the players data for the Career Mode from FIFA 20 .
some ideas for possible analysis :
Data has been scraped from the publicly available website https://sofifa.com. and Inspired from @stefanoleone992 Dataset
CREATE TABLE fifa20_data (
"short_name" VARCHAR,
"full_name" VARCHAR,
"image" VARCHAR,
"country" VARCHAR,
"position" VARCHAR,
"age" BIGINT,
"overall" BIGINT,
"potential" BIGINT,
"club" VARCHAR,
"contract" VARCHAR,
"height" VARCHAR,
"weight" VARCHAR,
"foot" VARCHAR,
"bov" BIGINT,
"bp" VARCHAR,
"growth" BIGINT,
"joined" TIMESTAMP,
"loan_date_end" TIMESTAMP,
"value" VARCHAR,
"wage" VARCHAR,
"release_clause" VARCHAR,
"attacking" BIGINT,
"crossing" BIGINT,
"finishing" BIGINT,
"heading_accuracy" BIGINT,
"short_passing" BIGINT,
"volleys" BIGINT,
"skill" BIGINT,
"dribbling" BIGINT,
"curve" BIGINT,
"fk_accuracy" BIGINT,
"long_passing" BIGINT,
"ball_control" BIGINT,
"movement" BIGINT,
"acceleration" BIGINT,
"sprint_speed" BIGINT,
"agility" BIGINT,
"reactions" BIGINT,
"balance" BIGINT,
"power" BIGINT,
"shot_power" BIGINT,
"jumping" BIGINT,
"stamina" BIGINT,
"strength" BIGINT,
"long_shots" BIGINT,
"mentality" BIGINT,
"aggression" BIGINT,
"interceptions" BIGINT,
"positioning" BIGINT,
"vision" BIGINT,
"penalties" BIGINT,
"composure" BIGINT,
"defending" BIGINT,
"marking" BIGINT,
"standing_tackle" BIGINT,
"sliding_tackle" BIGINT,
"goalkeeping" BIGINT,
"gk_diving" BIGINT,
"gk_handling" BIGINT,
"gk_positioning" BIGINT,
"gk_reflexes" BIGINT,
"total_stats" BIGINT,
"base_stats" BIGINT,
"w_f" BIGINT,
"sm" BIGINT,
"a_w" VARCHAR,
"d_w" VARCHAR,
"ir" BIGINT,
"pac" BIGINT,
"sho" BIGINT,
"pas" BIGINT,
"dri" BIGINT,
"def" BIGINT,
"phy" BIGINT,
"hits" VARCHAR
);
CREATE TABLE fifa20data (
"name" VARCHAR,
"image" VARCHAR,
"country" VARCHAR,
"position" VARCHAR,
"age" BIGINT,
"overall" BIGINT,
"potential" BIGINT,
"club" VARCHAR,
"contract" VARCHAR,
"height" VARCHAR,
"weight" VARCHAR,
"foot" VARCHAR,
"bov" BIGINT,
"bp" VARCHAR,
"growth" BIGINT,
"joined" TIMESTAMP,
"loan_date_end" TIMESTAMP,
"value" VARCHAR,
"wage" VARCHAR,
"release_clause" VARCHAR,
"attacking" BIGINT,
"crossing" BIGINT,
"finishing" BIGINT,
"heading_accuracy" BIGINT,
"short_passing" BIGINT,
"volleys" BIGINT,
"skill" BIGINT,
"dribbling" BIGINT,
"curve" BIGINT,
"fk_accuracy" BIGINT,
"long_passing" BIGINT,
"ball_control" BIGINT,
"movement" BIGINT,
"acceleration" BIGINT,
"sprint_speed" BIGINT,
"agility" BIGINT,
"reactions" BIGINT,
"balance" BIGINT,
"power" BIGINT,
"shot_power" BIGINT,
"jumping" BIGINT,
"stamina" BIGINT,
"strength" BIGINT,
"long_shots" BIGINT,
"mentality" BIGINT,
"aggression" BIGINT,
"interceptions" BIGINT,
"positioning" BIGINT,
"vision" BIGINT,
"penalties" BIGINT,
"composure" BIGINT,
"defending" BIGINT,
"marking" BIGINT,
"standing_tackle" BIGINT,
"sliding_tackle" BIGINT,
"goalkeeping" BIGINT,
"gk_diving" BIGINT,
"gk_handling" BIGINT,
"gk_positioning" BIGINT,
"gk_reflexes" BIGINT,
"total_stats" BIGINT,
"base_stats" BIGINT,
"w_f" BIGINT,
"sm" BIGINT,
"a_w" VARCHAR,
"d_w" VARCHAR,
"ir" BIGINT,
"pac" BIGINT,
"sho" BIGINT,
"pas" BIGINT,
"dri" BIGINT,
"def" BIGINT,
"phy" BIGINT,
"hits" VARCHAR
);
Anyone who has the link will be able to view this.