Complete FIFA 2017 Player Dataset (Global)
15k+ players, 50+ Attributes per player from the latest EA Sports Fifa 17
@kaggle.artimous_complete_fifa_2017_player_dataset_global
15k+ players, 50+ Attributes per player from the latest EA Sports Fifa 17
@kaggle.artimous_complete_fifa_2017_player_dataset_global
Content
Weekly Updates would include :
Data Source
Data was scraped from https://www.fifaindex.com/ first by getting player profile url set (as stored in PlayerNames.csv) and then scraping the individual pages for their attributes
Improvements
Important note for people interested in using the scraping: The site is not uniform and thus the scraping script requires considering a lot of corner cases (i.e. interchanged position of different attributes). Also the script contains proxy preferences which may be removed if not required.
Exploring the data
For starters you can become a scout:
And that is just the beginning. This is the playground.. literally!
Data description
Inspiration
I am a huge FIFA fanatic. While playing career mode I realised that I picked great young players early on every single time and since a lot of digital learning relies on how our brain works, I thought scouting great qualities in players would be something that can be worked on. Since then I started working on scraping the website and here is the data. I hope we can build something on it.
With access to players attributes you can become the best scout in the world. Go for it!
CREATE TABLE clubnames (
"name" VARCHAR,
"url" VARCHAR
);CREATE TABLE fulldata (
"name" VARCHAR,
"nationality" VARCHAR,
"national_position" VARCHAR,
"national_kit" DOUBLE,
"club" VARCHAR,
"club_position" VARCHAR,
"club_kit" DOUBLE,
"club_joining" TIMESTAMP,
"contract_expiry" DOUBLE,
"rating" BIGINT,
"height" VARCHAR,
"weight" VARCHAR,
"preffered_foot" VARCHAR,
"birth_date" TIMESTAMP,
"age" BIGINT,
"preffered_position" VARCHAR,
"work_rate" VARCHAR,
"weak_foot" BIGINT,
"skill_moves" BIGINT,
"ball_control" BIGINT,
"dribbling" BIGINT,
"marking" BIGINT,
"sliding_tackle" BIGINT,
"standing_tackle" BIGINT,
"aggression" BIGINT,
"reactions" BIGINT,
"attacking_position" BIGINT,
"interceptions" BIGINT,
"vision" BIGINT,
"composure" BIGINT,
"crossing" BIGINT,
"short_pass" BIGINT,
"long_pass" BIGINT,
"acceleration" BIGINT,
"speed" BIGINT,
"stamina" BIGINT,
"strength" BIGINT,
"balance" BIGINT,
"agility" BIGINT,
"jumping" BIGINT,
"heading" BIGINT,
"shot_power" BIGINT,
"finishing" BIGINT,
"long_shots" BIGINT,
"curve" BIGINT,
"freekick_accuracy" BIGINT,
"penalties" BIGINT,
"volleys" BIGINT,
"gk_positioning" BIGINT,
"gk_diving" BIGINT,
"gk_kicking" BIGINT,
"gk_handling" BIGINT,
"gk_reflexes" BIGINT
);CREATE TABLE nationalnames (
"name" VARCHAR,
"url" VARCHAR
);CREATE TABLE playernames (
"name" VARCHAR,
"url" VARCHAR
);Anyone who has the link will be able to view this.