Pokemons And Their Stats
1045 Pokemons with there features and names
@kaggle.shubhamchambhare_pokemons_and_there_stats
1045 Pokemons with there features and names
@kaggle.shubhamchambhare_pokemons_and_there_stats
This data set includes 1045 Pokemons, including their number, name, 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.
This are the raw attributes that are used for calculating how much damage an attack will do in the games. This dataset is about the pokemon games (NOT pokemon cards or Pokemon Go).
The data as described by Shubham Chambhare contains the following columns:
CREATE TABLE pokemon (
"name" VARCHAR,
"total" BIGINT,
"hp" BIGINT,
"attack" BIGINT,
"defence" BIGINT,
"sp_attack" BIGINT,
"sp_defence" BIGINT,
"speed" BIGINT
);CREATE TABLE pokemon_df (
"name" VARCHAR,
"total" BIGINT,
"hp" BIGINT,
"attack" BIGINT,
"defence" BIGINT,
"sp_attack" BIGINT,
"sp_defence" BIGINT,
"speed" BIGINT
);Anyone who has the link will be able to view this.