Fifa 23 Players Dataset
Official Fifa 23 Player Stats
@kaggle.sanjeetsinghnaik_fifa_23_players_dataset
Official Fifa 23 Player Stats
@kaggle.sanjeetsinghnaik_fifa_23_players_dataset
FIFA 23 is a football simulation video game published by Electronic Arts. It is the 30th and final installment in the FIFA series that is developed by EA Sports, and released worldwide on 30 September 2022 for PC, Nintendo Switch, PlayStation 4, PlayStation 5, Xbox One, Xbox Series X/S and Google Stadia.
The role of performance analysis within football is more important than ever. Whether it’s the opposition, potential transfer targets or last weekend’s fixture, analysing performances and data can be the difference between success and failure.
CREATE TABLE fifa_23_players_data (
"known_as" VARCHAR,
"full_name" VARCHAR,
"overall" BIGINT,
"potential" BIGINT,
"value_in_euro" BIGINT -- Value(in Euro),
"positions_played" VARCHAR,
"best_position" VARCHAR,
"nationality" VARCHAR,
"image_link" VARCHAR,
"age" BIGINT,
"height_in_cm" BIGINT -- Height(in Cm),
"weight_in_kg" BIGINT -- Weight(in Kg),
"totalstats" BIGINT,
"basestats" BIGINT,
"club_name" VARCHAR,
"wage_in_euro" BIGINT -- Wage(in Euro),
"release_clause" BIGINT,
"club_position" VARCHAR,
"contract_until" VARCHAR,
"club_jersey_number" VARCHAR,
"joined_on" BIGINT,
"on_loan" VARCHAR,
"preferred_foot" VARCHAR,
"weak_foot_rating" BIGINT,
"skill_moves" BIGINT,
"international_reputation" BIGINT,
"national_team_name" VARCHAR,
"national_team_image_link" VARCHAR,
"national_team_position" VARCHAR,
"national_team_jersey_number" VARCHAR,
"attacking_work_rate" VARCHAR,
"defensive_work_rate" VARCHAR,
"pace_total" BIGINT,
"shooting_total" BIGINT,
"passing_total" BIGINT,
"dribbling_total" BIGINT,
"defending_total" BIGINT,
"physicality_total" BIGINT,
"crossing" BIGINT,
"finishing" BIGINT,
"heading_accuracy" BIGINT,
"short_passing" BIGINT,
"volleys" BIGINT,
"dribbling" BIGINT,
"curve" BIGINT,
"freekick_accuracy" BIGINT,
"longpassing" BIGINT,
"ballcontrol" BIGINT,
"acceleration" BIGINT,
"sprint_speed" BIGINT,
"agility" BIGINT,
"reactions" BIGINT,
"balance" BIGINT,
"shot_power" BIGINT,
"jumping" BIGINT,
"stamina" BIGINT,
"strength" BIGINT,
"long_shots" BIGINT,
"aggression" BIGINT,
"interceptions" BIGINT,
"positioning" BIGINT,
"vision" BIGINT,
"penalties" BIGINT,
"composure" BIGINT,
"marking" BIGINT,
"standing_tackle" BIGINT,
"sliding_tackle" BIGINT,
"goalkeeper_diving" BIGINT,
"goalkeeper_handling" BIGINT,
"n__goalkeeperkicking" BIGINT -- GoalkeeperKicking,
"goalkeeper_positioning" BIGINT,
"goalkeeper_reflexes" BIGINT,
"st_rating" BIGINT,
"lw_rating" BIGINT,
"lf_rating" BIGINT,
"cf_rating" BIGINT,
"rf_rating" BIGINT,
"rw_rating" BIGINT,
"cam_rating" BIGINT,
"lm_rating" BIGINT,
"cm_rating" BIGINT,
"rm_rating" BIGINT,
"lwb_rating" BIGINT,
"cdm_rating" BIGINT,
"rwb_rating" BIGINT,
"lb_rating" BIGINT,
"cb_rating" BIGINT,
"rb_rating" BIGINT,
"gk_rating" BIGINT
);Anyone who has the link will be able to view this.