Madden 23 Player Ratings
Madden 23 player ratings at game launch
@kaggle.austinreese_madden_23_player_ratings
Madden 23 player ratings at game launch
@kaggle.austinreese_madden_23_player_ratings
This dataset contains Madden 23 player ratings sourced from EA's player ratings API. You can use the API here: https://ratings-api.ea.com/v2/entities/m23-ratings. This data is taken directly from the API and is not changed in any way.
Shoutout to EA's API team for making this data very easy to collect.
CREATE TABLE madden23ratings (
"fullnameforsearch" VARCHAR,
"age" BIGINT,
"position" VARCHAR,
"height" BIGINT,
"team" VARCHAR,
"overall_rating" BIGINT,
"awareness_rating" BIGINT,
"speed_rating" BIGINT,
"agility_rating" BIGINT,
"jumping_rating" BIGINT,
"acceleration_rating" BIGINT,
"archetype" VARCHAR,
"bcvision_rating" BIGINT,
"blockshedding_rating" BIGINT,
"breaksack_rating" BIGINT,
"breaktackle_rating" BIGINT,
"carrying_rating" BIGINT,
"catchintraffic_rating" BIGINT,
"catching_rating" BIGINT,
"changeofdirection_rating" BIGINT,
"college" VARCHAR,
"deeprouterunning_rating" BIGINT,
"finessemoves_rating" BIGINT,
"firstname" VARCHAR,
"hitpower_rating" BIGINT,
"impactblocking_rating" BIGINT,
"injury_rating" BIGINT,
"iteration" VARCHAR,
"jerseynum" BIGINT,
"jukemove_rating" BIGINT,
"kickaccuracy_rating" BIGINT,
"kickpower_rating" BIGINT,
"kickreturn_rating" BIGINT,
"lastname" VARCHAR,
"leadblock_rating" BIGINT,
"mancoverage_rating" BIGINT,
"mediumrouterunning_rating" BIGINT,
"passblockfinesse_rating" BIGINT,
"passblockpower_rating" BIGINT,
"passblock_rating" BIGINT,
"playaction_rating" BIGINT,
"playrecognition_rating" BIGINT,
"plyrassetname" VARCHAR,
"plyrbirthdate" TIMESTAMP,
"plyrhandedness" VARCHAR,
"plyrportrait" BIGINT,
"powermoves_rating" BIGINT,
"press_rating" BIGINT,
"primarykey" BIGINT,
"pursuit_rating" BIGINT,
"release_rating" BIGINT,
"runblockfinesse_rating" BIGINT,
"runblockpower_rating" BIGINT,
"runblock_rating" BIGINT,
"runningstyle_rating" VARCHAR,
"shortrouterunning_rating" BIGINT,
"signingbonus" BIGINT,
"spectacularcatch_rating" BIGINT,
"spinmove_rating" BIGINT,
"stamina_rating" BIGINT,
"status" VARCHAR,
"stiffarm_rating" BIGINT,
"strength_rating" BIGINT,
"tackle_rating" BIGINT,
"teamid" BIGINT,
"throwaccuracydeep_rating" BIGINT,
"throwaccuracymid_rating" BIGINT,
"throwaccuracyshort_rating" BIGINT,
"throwontherun_rating" BIGINT,
"throwpower_rating" BIGINT,
"throwunderpressure_rating" BIGINT,
"totalsalary" BIGINT,
"toughness_rating" BIGINT,
"trucking_rating" BIGINT,
"weight" BIGINT,
"yearspro" BIGINT,
"zonecoverage_rating" BIGINT
);Anyone who has the link will be able to view this.