Pokemon Type Matchup Data
Type Matchup data scraped from Serebii
@kaggle.lunamcbride24_pokemon_type_matchup_data
Type Matchup data scraped from Serebii
@kaggle.lunamcbride24_pokemon_type_matchup_data
This is a dataset meant to test Selenium for scraping purposes. This dataset takes the type effectiveness data from Serebii.net, which I checked the terms of service and Robots.txt to make sure there was no problem.
This dataset has the data from Pokemon included in the current Galar Dex (post Isle of Armor, pre Crowned Tundra). I tried to make the scraping process as repeatable as I could, so using the current Pokedex with gaps made it easier to visualize the scraped data without using the Pokedex number for indexing. The data scraped was the names, pokedex number, and type matchup data for all types against the said Pokemon (including a * in front to indicate it is a damage multiplier).
I hope to come back to this later and maybe work with it more when the ninth generation comes along (when it does) and maybe do just a simple second run with Crowned Tundra Pokemon to try and ensure scalability.
CREATE TABLE poketypematchupdata (
"name" VARCHAR,
"number" VARCHAR,
"normal" VARCHAR,
"fire" VARCHAR,
"water" VARCHAR,
"electric" VARCHAR,
"grass" VARCHAR,
"ice" VARCHAR,
"fighting" VARCHAR,
"poison" VARCHAR,
"ground" VARCHAR,
"flying" VARCHAR,
"psychic" VARCHAR,
"bug" VARCHAR,
"rock" VARCHAR,
"ghost" VARCHAR,
"dragon" VARCHAR,
"dark" VARCHAR,
"steel" VARCHAR,
"fairy" VARCHAR
);Anyone who has the link will be able to view this.