Global Homicide Rates Dataset
Comprehensive Dataset on Homicide Rates Across Countries and Demographics
@kaggle.programmerrdai_homicides
Comprehensive Dataset on Homicide Rates Across Countries and Demographics
@kaggle.programmerrdai_homicides
Explore detailed global homicide data with this extensive dataset, covering various aspects of intentional homicides. Compiled from multiple reliable sources, including UNODC and WHO, this dataset includes:
This dataset provides valuable insights for researchers, policymakers, and data scientists interested in crime analysis, public health, and social studies. Analyze trends, identify patterns, and develop predictive models to understand and mitigate the impact of homicides worldwide.
CREATE TABLE child_homicide_rate (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_both_sexes_age_0_19" DOUBLE -- Homicide Rate Per 100,000 Population - Both Sexes - Age 0-19
);CREATE TABLE child_homicide_rate_per_100000 (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"number_of_homicide_victims_among_children_0_19_per_100_42d545a5" DOUBLE -- Number Of Homicide Victims Among Children (0-19) Per 100,000 Population
);CREATE TABLE distribution_of_homicide_rates (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_both_sexes_all_ages" DOUBLE -- Homicide Rate Per 100,000 Population - Both Sexes - All Ages,
"continent" VARCHAR
);CREATE TABLE female_homicide_rate (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_female_all_ages" DOUBLE -- Homicide Rate Per 100,000 Population - Female - All Ages
);CREATE TABLE female_homicide_victims (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"number_of_homicides_female_all_ages" DOUBLE -- Number Of Homicides - Female - All Ages
);CREATE TABLE homicide_rates_across_western_europe (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_eisner_and_who_mo_1ea8d426" DOUBLE -- Homicide Rate Per 100,000 Population - Eisner And WHO Mortality Database
);CREATE TABLE homicide_rate_unodc (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_both_sexes_all_ages" DOUBLE -- Homicide Rate Per 100,000 Population - Both Sexes - All Ages
);CREATE TABLE homicide_rate_who_age_standardized (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"age_standardized_homicide_rate_per_100_000_population__43e49d89" DOUBLE -- Age Standardized Homicide Rate Per 100,000 Population - Both Sexes - All Ages
);CREATE TABLE homicide_rate_who_mortality_database (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"homicide_rate_per_100_000_population_both_sexes_all_ages" DOUBLE -- Homicide Rate Per 100,000 Population - Both Sexes - All Ages
);CREATE TABLE homicides_unodc (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"number_of_homicides_both_sexes_all_ages" DOUBLE -- Number Of Homicides - Both Sexes - All Ages
);Anyone who has the link will be able to view this.