Pokemon Pokedex With Stats
1025 Pokemon with stats and types from Generation 1 to 9
@kaggle.arnavvvvv_pokemon_pokedex
1025 Pokemon with stats and types from Generation 1 to 9
@kaggle.arnavvvvv_pokemon_pokedex
This data set includes 1025 Pokemon, including their number, name, first and second type, and basic stats: HP, Attack, Defense, Special Attack, Special Defense, and Speed. It has been of great use when teaching statistics to kids. With certain types you can also give a geeky introduction to machine learning.
CREATE TABLE pokemon (
"n" BIGINT -- #,
"name" VARCHAR,
"type_1" VARCHAR,
"type_2" VARCHAR,
"total" BIGINT,
"hp" BIGINT,
"attack" BIGINT,
"defense" BIGINT,
"sp_atk" BIGINT -- Sp. Atk,
"sp_def" BIGINT -- Sp. Def,
"speed" BIGINT,
"generation" BIGINT,
"legendary" BOOLEAN
);Anyone who has the link will be able to view this.