All Pokemon Dataset
Data from all Pokemons and their different forms from all 8 generations
@kaggle.maca11_all_pokemon_dataset
Data from all Pokemons and their different forms from all 8 generations
@kaggle.maca11_all_pokemon_dataset
This Dataset contains data from all Pokemons and their forms from the eight generations. It includes their number, name, primary and secondary type, abilities, base stats, performance vs other types, etc. Data was scrapped from serebii bulbapedia and pokemon database
Three new columns have been added:
CREATE TABLE all_pokemon (
  "number" BIGINT,
  "name" VARCHAR,
  "type_1" VARCHAR,
  "type_2" VARCHAR,
  "abilities" VARCHAR,
  "hp" BIGINT,
  "att" BIGINT,
  "def" BIGINT,
  "spa" BIGINT,
  "spd" BIGINT,
  "spe" BIGINT,
  "bst" BIGINT,
  "mean" DOUBLE,
  "standard_deviation" DOUBLE,
  "generation" DOUBLE,
  "experience_type" VARCHAR,
  "experience_to_level_100" BIGINT,
  "final_evolution" DOUBLE,
  "catch_rate" BIGINT,
  "legendary" DOUBLE,
  "mega_evolution" DOUBLE,
  "alolan_form" DOUBLE,
  "galarian_form" DOUBLE,
  "against_normal" DOUBLE,
  "against_fire" DOUBLE,
  "against_water" DOUBLE,
  "against_electric" DOUBLE,
  "against_grass" DOUBLE,
  "against_ice" DOUBLE,
  "against_fighting" DOUBLE,
  "against_poison" DOUBLE,
  "against_ground" DOUBLE,
  "against_flying" DOUBLE,
  "against_psychic" DOUBLE,
  "against_bug" DOUBLE,
  "against_rock" DOUBLE,
  "against_ghost" DOUBLE,
  "against_dragon" DOUBLE,
  "against_dark" DOUBLE,
  "against_steel" DOUBLE,
  "against_fairy" DOUBLE,
  "height" DOUBLE,
  "weight" DOUBLE,
  "bmi" DOUBLE
);Anyone who has the link will be able to view this.