Los Angeles Crime Data
Reported crime in Los Angeles from 2020 to present
@kaggle.hemil26_crime_in_los_angeles
Reported crime in Los Angeles from 2020 to present
@kaggle.hemil26_crime_in_los_angeles
This data is collected on the basis of LAPD radio comms and Investigation done by them after the crime is reported. It contains crime data from 2020 to present(March 2024). In order to protect the privacy of crime victims, addresses are shown at the block level only and specific locations are not identified.
The Dataset includes 20 columns which includes information on areas such as -
The data was provided by https://data.lacity.org/, y'all can find the original dataset being updated here
banner photo by Jake Blucker
CREATE TABLE crime_in_la (
"dr_no" BIGINT,
"date_occ" TIMESTAMP,
"time_occ" VARCHAR,
"area" BIGINT,
"area_name" VARCHAR,
"rpt_dist_no" BIGINT,
"crm_cd" BIGINT,
"crm_cd_desc" VARCHAR,
"mocodes" VARCHAR,
"vict_age" BIGINT,
"vict_sex" VARCHAR,
"vict_descent" VARCHAR,
"premis_desc" VARCHAR,
"weapon_used_cd" DOUBLE,
"weapon_desc" VARCHAR,
"status" VARCHAR,
"status_desc" VARCHAR,
"location" VARCHAR,
"lat" DOUBLE,
"lon" DOUBLE
);Anyone who has the link will be able to view this.