Super Heroes Dataset
How's your average superhero?
@kaggle.claudiodavi_superhero_set
How's your average superhero?
@kaggle.claudiodavi_superhero_set
Super Heroes have been in popular culture for a long time and now more than ever. Since its creation, super heroes have not been very diverse, but that is changing rapidly. This dataset aims to provide an overview about heroes and their physical as well as power characteristics, helping researchers and curious minds identify trends and patterns.
This data was collected in June/2017 from superherodb and not updated since, so it may not be up to date. There are two datasets here. The first one lists the characteristics of every super hero found on my source, the second contains information about every superpower and lists if they are present in any given hero.
This data was scraped from SuperHeroDb.
What are the characteristics of your favorite super heroes?
CREATE TABLE heroes_information (
"unnamed_0" BIGINT -- Unnamed: 0,
"name" VARCHAR,
"gender" VARCHAR,
"eye_color" VARCHAR,
"race" VARCHAR,
"hair_color" VARCHAR,
"height" DOUBLE,
"publisher" VARCHAR,
"skin_color" VARCHAR,
"alignment" VARCHAR,
"weight" DOUBLE
);CREATE TABLE super_hero_powers (
"hero_names" VARCHAR,
"agility" BOOLEAN,
"accelerated_healing" BOOLEAN,
"lantern_power_ring" BOOLEAN,
"dimensional_awareness" BOOLEAN,
"cold_resistance" BOOLEAN,
"durability" BOOLEAN,
"stealth" BOOLEAN,
"energy_absorption" BOOLEAN,
"flight" BOOLEAN,
"danger_sense" BOOLEAN,
"underwater_breathing" BOOLEAN,
"marksmanship" BOOLEAN,
"weapons_master" BOOLEAN,
"power_augmentation" BOOLEAN,
"animal_attributes" BOOLEAN,
"longevity" BOOLEAN,
"intelligence" BOOLEAN,
"super_strength" BOOLEAN,
"cryokinesis" BOOLEAN,
"telepathy" BOOLEAN,
"energy_armor" BOOLEAN,
"energy_blasts" BOOLEAN,
"duplication" BOOLEAN,
"size_changing" BOOLEAN,
"density_control" BOOLEAN,
"stamina" BOOLEAN,
"astral_travel" BOOLEAN,
"audio_control" BOOLEAN,
"dexterity" BOOLEAN,
"omnitrix" BOOLEAN,
"super_speed" BOOLEAN,
"possession" BOOLEAN,
"animal_oriented_powers" BOOLEAN,
"weapon_based_powers" BOOLEAN,
"electrokinesis" BOOLEAN,
"darkforce_manipulation" BOOLEAN,
"death_touch" BOOLEAN,
"teleportation" BOOLEAN,
"enhanced_senses" BOOLEAN,
"telekinesis" BOOLEAN,
"energy_beams" BOOLEAN,
"magic" BOOLEAN,
"hyperkinesis" BOOLEAN,
"jump" BOOLEAN,
"clairvoyance" BOOLEAN,
"dimensional_travel" BOOLEAN,
"power_sense" BOOLEAN,
"shapeshifting" BOOLEAN,
"peak_human_condition" BOOLEAN,
"immortality" BOOLEAN,
"camouflage" BOOLEAN,
"element_control" BOOLEAN,
"phasing" BOOLEAN,
"astral_projection" BOOLEAN,
"electrical_transport" BOOLEAN,
"fire_control" BOOLEAN,
"projection" BOOLEAN,
"summoning" BOOLEAN,
"enhanced_memory" BOOLEAN,
"reflexes" BOOLEAN,
"invulnerability" BOOLEAN,
"energy_constructs" BOOLEAN,
"force_fields" BOOLEAN,
"self_sustenance" BOOLEAN,
"anti_gravity" BOOLEAN,
"empathy" BOOLEAN,
"power_nullifier" BOOLEAN,
"radiation_control" BOOLEAN,
"psionic_powers" BOOLEAN,
"elasticity" BOOLEAN,
"substance_secretion" BOOLEAN,
"elemental_transmogrification" BOOLEAN,
"technopath_cyberpath" BOOLEAN,
"photographic_reflexes" BOOLEAN,
"seismic_power" BOOLEAN,
"animation" BOOLEAN,
"precognition" BOOLEAN,
"mind_control" BOOLEAN,
"fire_resistance" BOOLEAN,
"power_absorption" BOOLEAN,
"enhanced_hearing" BOOLEAN,
"nova_force" BOOLEAN,
"insanity" BOOLEAN,
"hypnokinesis" BOOLEAN,
"animal_control" BOOLEAN,
"natural_armor" BOOLEAN,
"intangibility" BOOLEAN,
"enhanced_sight" BOOLEAN,
"molecular_manipulation" BOOLEAN,
"heat_generation" BOOLEAN,
"adaptation" BOOLEAN,
"gliding" BOOLEAN,
"power_suit" BOOLEAN,
"mind_blast" BOOLEAN,
"probability_manipulation" BOOLEAN,
"gravity_control" BOOLEAN,
"regeneration" BOOLEAN,
"light_control" BOOLEAN,
"echolocation" BOOLEAN
);Anyone who has the link will be able to view this.