Baselight

Pokemon Dataset With Stats

🦄100 Pokemon's with Stats and Types!!!

@kaggle.ritesh2000_pokemon_dataset_with_stats

Pokemon Go Pokemon
@kaggle.ritesh2000_pokemon_dataset_with_stats.pokemon_go_pokemon

  • 11.93 KB
  • 100 rows
  • 13 columns
n

#

name

Name

type_1

Type 1

type_2

Type 2

total

Total

hp

HP

attack

Attack

defense

Defense

sp_atk

Sp-Atk

sp_def

Sp-Def

speed

Speed

stage

Stage

legendary

Legendary

1BulbasaurGrassPoison3184549496565451
2IvysaurGrassPoison4056062638080602
3VenusaurGrassPoison525808283100100803
4CharmanderFireFight3093952436050651
5CharmeleonFireFight4055864588065802
6CharizardFireFlying534788478109851003
7SquirtleWaterFight3144448655064431
8WartortleWaterFight4055963806580582
9BlastoiseWaterFight530798310085105783
10CaterpieBugGrass1954530352020451

CREATE TABLE pokemon_go_pokemon (
  "n" BIGINT,
  "name" VARCHAR,
  "type_1" VARCHAR,
  "type_2" VARCHAR,
  "total" BIGINT,
  "hp" BIGINT,
  "attack" BIGINT,
  "defense" BIGINT,
  "sp_atk" BIGINT,
  "sp_def" BIGINT,
  "speed" BIGINT,
  "stage" BIGINT,
  "legendary" BOOLEAN
);

Share link

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