Homicide Reports, 1980-2014
Can you develop an algorithm to detect serial killer activity?
@kaggle.murderaccountability_homicide_reports
Can you develop an algorithm to detect serial killer activity?
@kaggle.murderaccountability_homicide_reports
CREATE TABLE database (
"record_id" BIGINT,
"agency_code" VARCHAR,
"agency_name" VARCHAR,
"agency_type" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"year" BIGINT,
"month" VARCHAR,
"incident" BIGINT,
"crime_type" VARCHAR,
"crime_solved" VARCHAR,
"victim_sex" VARCHAR,
"victim_age" BIGINT,
"victim_race" VARCHAR,
"victim_ethnicity" VARCHAR,
"perpetrator_sex" VARCHAR,
"perpetrator_age" VARCHAR,
"perpetrator_race" VARCHAR,
"perpetrator_ethnicity" VARCHAR,
"relationship" VARCHAR,
"weapon" VARCHAR,
"victim_count" BIGINT,
"perpetrator_count" BIGINT,
"record_source" VARCHAR
);
Anyone who has the link will be able to view this.