Madden 21 Player Ratings
Madden NFL 2021 Player Ratings
@kaggle.dtrade84_madden_21_player_ratings
Madden NFL 2021 Player Ratings
@kaggle.dtrade84_madden_21_player_ratings
This dataset contains the player ratings for EA Sports upcoming Madden title, Madden 21. The inspiration for this came behind my love for football, the NFL, and the Madden NFL Video games.
CREATE TABLE madden21_ratings (
"team" VARCHAR,
"full_name" VARCHAR,
"overall_rating" BIGINT,
"position" VARCHAR,
"age" BIGINT,
"speed" BIGINT,
"acceleration" BIGINT,
"awareness" BIGINT,
"agility" BIGINT,
"strength" BIGINT,
"throw_power" BIGINT,
"throw_on_the_run" BIGINT,
"throw_under_pressure" BIGINT,
"throw_accuracy_short" BIGINT,
"throw_accuracy_mid" BIGINT,
"throw_accuracy_deep" BIGINT,
"release" BIGINT,
"ball_carrier_vision" BIGINT,
"stamina" BIGINT,
"carrying" BIGINT,
"play_action" BIGINT,
"pursuit" BIGINT,
"play_recognition" BIGINT,
"short_route_running" BIGINT,
"medium_route_running" BIGINT,
"deep_route_running" BIGINT,
"catch_in_traffic" BIGINT,
"catching" BIGINT,
"spin_move" BIGINT,
"finesse_moves" BIGINT,
"spectacular_catch" BIGINT,
"jumping" BIGINT,
"tackle" BIGINT,
"zone_coverage" BIGINT,
"man_coverage" BIGINT,
"trucking" BIGINT,
"juke_move" BIGINT,
"break_sack" BIGINT,
"toughness" BIGINT,
"stiff_arm" BIGINT,
"power_moves" BIGINT,
"lead_blocking" BIGINT,
"run_block_power" BIGINT,
"run_blocking" BIGINT,
"hit_power" BIGINT,
"pass_block_finesse" BIGINT,
"pass_block_power" BIGINT,
"pass_blocking" BIGINT,
"impact_blocking" BIGINT,
"kick_return" BIGINT,
"kick_accuracy" BIGINT,
"break_tackle" BIGINT,
"kick_power" BIGINT,
"change_of_direction" BIGINT,
"press" BIGINT,
"block_shedding" BIGINT,
"run_block_finesse" BIGINT,
"injury" BIGINT,
"player_handedness" VARCHAR,
"jersey_number" BIGINT,
"n__total_salary" VARCHAR -- Total Salary,
"n__signing_bonus" VARCHAR -- Signing Bonus,
"archetype" VARCHAR,
"running_style" VARCHAR,
"years_pro" BIGINT,
"height" BIGINT,
"weight" BIGINT,
"birthdate" TIMESTAMP,
"college" VARCHAR
);
Anyone who has the link will be able to view this.