The Complete Pokemon Dataset
Data on more than 800 Pokemon from all 7 Generations.
@kaggle.rounakbanik_pokemon
Data on more than 800 Pokemon from all 7 Generations.
@kaggle.rounakbanik_pokemon
This dataset contains information on all 802 Pokemon from all Seven Generations of Pokemon. The information contained in this dataset include Base Stats, Performance against Other Types, Height, Weight, Classification, Egg Steps, Experience Points, Abilities, etc. The information was scraped from http://serebii.net/
The data was scraped from http://serebii.net/.
Pokemon holds a very special place in my heart as it is probably the only video game I have judiciously followed for more than 10 years. With this dataset, I wanted to be able to answer the following questions:
CREATE TABLE pokemon (
"abilities" VARCHAR,
"against_bug" DOUBLE,
"against_dark" DOUBLE,
"against_dragon" DOUBLE,
"against_electric" DOUBLE,
"against_fairy" DOUBLE,
"against_fight" DOUBLE,
"against_fire" DOUBLE,
"against_flying" DOUBLE,
"against_ghost" DOUBLE,
"against_grass" DOUBLE,
"against_ground" DOUBLE,
"against_ice" DOUBLE,
"against_normal" DOUBLE,
"against_poison" DOUBLE,
"against_psychic" DOUBLE,
"against_rock" DOUBLE,
"against_steel" DOUBLE,
"against_water" DOUBLE,
"attack" BIGINT,
"base_egg_steps" BIGINT,
"base_happiness" BIGINT,
"base_total" BIGINT,
"capture_rate" VARCHAR,
"classfication" VARCHAR,
"defense" BIGINT,
"experience_growth" BIGINT,
"height_m" DOUBLE,
"hp" BIGINT,
"japanese_name" VARCHAR,
"name" VARCHAR,
"percentage_male" DOUBLE,
"pokedex_number" BIGINT,
"sp_attack" BIGINT,
"sp_defense" BIGINT,
"speed" BIGINT,
"type1" VARCHAR,
"type2" VARCHAR,
"weight_kg" DOUBLE,
"generation" BIGINT,
"is_legendary" BIGINT
);Anyone who has the link will be able to view this.