Pokemon
Pokemon data to be used to teach exploratory data analysis.
@kaggle.mlomuscio_pokemon
Pokemon data to be used to teach exploratory data analysis.
@kaggle.mlomuscio_pokemon
I acquired the data from Alberto Barradas at https://www.kaggle.com/abcsds/pokemon. I needed to edit some of the variable names and remove the Total variable in order for my students to use this data for class. Otherwise, I would have just had them use his version of the data.
This dataset is for my Introduction to Data Science and Machine Learning Course. Using a modified Pokémon dataset acquired from Kaggle.com, I created example code for students demonstrating how to explore data with R.
Barradas provides the following description of each variable. I have modified the variable names to make them easier to deal with.
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
);
Anyone who has the link will be able to view this.