Crime In Los Angeles
Crime data from 2010 through September 2017
@kaggle.cityofla_crime_in_los_angeles
Crime data from 2010 through September 2017
@kaggle.cityofla_crime_in_los_angeles
This dataset reflects incidents of crime in the City of Los Angeles dating back to 2010. This data is transcribed from original crime reports that are typed on paper and therefore there may be some inaccuracies within the data. Some location fields with missing data are noted as (0°, 0°). Address fields are only provided to the nearest hundred block in order to maintain privacy.
REPDIST, Number, min: 101 max: 2,199 avg: 1,162 count: 1,135
PREC, Number, min: 1 max: 21 avg: 11 count: 1,135
APREC, Text, PACIFIC (74), DEVONSHIRE (70), WEST LOS ANGELES (69), NORTHEAST (64), HOLLENBECK (63), MISSION (62)... (15 more)
BUREAU, Text, VALLEY BUREAU (399), WEST BUREAU (288), CENTRAL BUREAU (267), SOUTH BUREAU (181)
BASICCAR, Text, 8A29 (17), 17A35 (17), 1A1 (15), 17A49 (14), 16A35 (14), 14A73 (14), 19A43 (13), 8A95 (12), 19A7 (12)... (160 more)
TOOLTIP, Text, Bureau: SOUTH BUREAU\nDistrict: 562\nDivision: HARBOR (1)... (1134 more)
OBJECTID
Unique ID
This dataset was kindly released by the City of Los Angeles. You can find the original dataset, updated weekly, here.
0107 God or 1021 Repair?CREATE TABLE crime_data_2010_2017 (
"dr_number" BIGINT,
"date_reported" TIMESTAMP,
"date_occurred" TIMESTAMP,
"time_occurred" BIGINT,
"area_id" BIGINT,
"area_name" VARCHAR,
"reporting_district" BIGINT,
"crime_code" BIGINT,
"crime_code_description" VARCHAR,
"mo_codes" VARCHAR,
"victim_age" DOUBLE,
"victim_sex" VARCHAR,
"victim_descent" VARCHAR,
"premise_code" DOUBLE,
"premise_description" VARCHAR,
"weapon_used_code" DOUBLE,
"weapon_description" VARCHAR,
"status_code" VARCHAR,
"status_description" VARCHAR,
"crime_code_1" DOUBLE,
"crime_code_2" DOUBLE,
"crime_code_3" DOUBLE,
"crime_code_4" DOUBLE,
"address" VARCHAR,
"cross_street" VARCHAR,
"location" VARCHAR
);CREATE TABLE mo_codes (
"mo_code" BIGINT,
"description" VARCHAR
);Anyone who has the link will be able to view this.