Football Players Data
FIFA Football Players Dataset of 17000 Players From sofifa.com
@kaggle.maso0dahmed_football_players_data
FIFA Football Players Dataset of 17000 Players From sofifa.com
@kaggle.maso0dahmed_football_players_data
This comprehensive dataset offers detailed information on approximately 17,000 FIFA football players, meticulously scraped from SoFIFA.com.
It encompasses a wide array of player-specific data points, including but not limited to player names, nationalities, clubs, player ratings, potential, positions, ages, and various skill attributes. This dataset is ideal for football enthusiasts, data analysts, and researchers seeking to conduct in-depth analysis, statistical studies, or machine learning projects related to football players' performance, characteristics, and career progressions.
This dataset is ideal for data analysis, predictive modeling, and machine learning projects. It can be used for:
Please ensure to adhere to the terms of service of SoFIFA.com and relevant data protection laws when using this dataset. The dataset is intended for educational and research purposes only and should not be used for commercial gains without proper authorization.
CREATE TABLE fifa_players (
"name" VARCHAR,
"full_name" VARCHAR,
"birth_date" TIMESTAMP,
"age" BIGINT,
"height_cm" DOUBLE,
"weight_kgs" DOUBLE,
"positions" VARCHAR,
"nationality" VARCHAR,
"overall_rating" BIGINT,
"potential" BIGINT,
"value_euro" DOUBLE,
"wage_euro" DOUBLE,
"preferred_foot" VARCHAR,
"international_reputation_1_5" BIGINT -- International Reputation(1-5),
"weak_foot_1_5" BIGINT -- Weak Foot(1-5),
"skill_moves_1_5" BIGINT -- Skill Moves(1-5),
"body_type" VARCHAR,
"release_clause_euro" DOUBLE,
"national_team" VARCHAR,
"national_rating" DOUBLE,
"national_team_position" VARCHAR,
"national_jersey_number" DOUBLE,
"crossing" BIGINT,
"finishing" BIGINT,
"heading_accuracy" BIGINT,
"short_passing" BIGINT,
"volleys" BIGINT,
"dribbling" BIGINT,
"curve" BIGINT,
"freekick_accuracy" BIGINT,
"long_passing" BIGINT,
"ball_control" 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
);Anyone who has the link will be able to view this.