Baselight

Pokemon Pokedex With Stats

1025 Pokemon with stats and types from Generation 1 to 9

@kaggle.arnavvvvv_pokemon_pokedex

Loading...
Loading...

About this Dataset

Pokemon Pokedex With Stats

Context

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.

Content

  • #: ID for each pokemon
  • Name: Name of each pokemon
  • Type 1: Each pokemon has a type, this determines weakness/resistance to attacks
  • Type 2: Some pokemon are dual type and have 2
  • Total: sum of all stats that come after this, a general guide to how strong a pokemon is
  • HP: hit points, or health, defines how much damage a pokemon can withstand before fainting
  • Attack: the base modifier for normal attacks (eg. Scratch, Punch)
  • Defense: the base damage resistance against normal attacks
  • SP Atk: special attack, the base modifier for special attacks (e.g. fire blast, bubble beam)
  • SP Def: the base damage resistance against special attacks
  • Speed: determines which pokemon attacks first each round

Tables

Pokemon

@kaggle.arnavvvvv_pokemon_pokedex.pokemon
  • 38.65 kB
  • 1,104 rows
  • 13 columns
Loading...
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
);

Share link

Anyone who has the link will be able to view this.