Baselight

Pokemon

Pokemon data to be used to teach exploratory data analysis.

@kaggle.mlomuscio_pokemon

Pokemondata
@kaggle.mlomuscio_pokemon.pokemondata

  • 27.85 KB
  • 800 rows
  • 12 columns
num

Num

name

Name

type1

Type1

type2

Type2

hp

HP

attack

Attack

defense

Defense

spatk

SpAtk

spdef

SpDef

speed

Speed

generation

Generation

legendary

Legendary

1BulbasaurGrassPoison4549496565451
2IvysaurGrassPoison6062638080601
3VenusaurGrassPoison808283100100801
3VenusaurMega VenusaurGrassPoison80100123122120801
4CharmanderFirenan3952436050651
5CharmeleonFirenan5864588065801
6CharizardFireFlying788478109851001
6CharizardMega Charizard XFireDragon78130111130851001
6CharizardMega Charizard YFireFlying78104781591151001
7SquirtleWaternan4448655064431

CREATE TABLE pokemondata (
  "num" BIGINT,
  "name" VARCHAR,
  "type1" VARCHAR,
  "type2" VARCHAR,
  "hp" BIGINT,
  "attack" BIGINT,
  "defense" BIGINT,
  "spatk" BIGINT,
  "spdef" BIGINT,
  "speed" BIGINT,
  "generation" BIGINT,
  "legendary" BOOLEAN
);

Share link

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