New York City Crimes
2014-2015 Crimes reported in all 5 boroughs of New York City
@kaggle.adamschroeder_crimes_new_york_city
2014-2015 Crimes reported in all 5 boroughs of New York City
@kaggle.adamschroeder_crimes_new_york_city
With this dataset I hope to raise awareness on the trends in crime.
For NYPD Complaint Data, each row represents a crime. For information on the columns, please see the attached csv, "Crime_Column_Description".
Reported crime go back 5 years but I only attached reported crime from 2014-2015 due to file size. The full report can be found at NYC Open Data (https://data.cityofnewyork.us/Public-Safety/NYPD-Complaint-Data-Historic/qgea-i56i)
I would like to thank NYC Open Data for the dataset.
Additional things I would like to better understand:
CREATE TABLE crime_column_description (
"column" VARCHAR,
"description" VARCHAR
);CREATE TABLE nypd_complaint_data_historic (
"cmplnt_num" BIGINT,
"cmplnt_fr_dt" VARCHAR,
"cmplnt_fr_tm" VARCHAR,
"cmplnt_to_dt" TIMESTAMP,
"cmplnt_to_tm" VARCHAR,
"rpt_dt" TIMESTAMP,
"ky_cd" BIGINT,
"ofns_desc" VARCHAR,
"pd_cd" DOUBLE,
"pd_desc" VARCHAR,
"crm_atpt_cptd_cd" VARCHAR,
"law_cat_cd" VARCHAR,
"juris_desc" VARCHAR,
"boro_nm" VARCHAR,
"addr_pct_cd" DOUBLE,
"loc_of_occur_desc" VARCHAR,
"prem_typ_desc" VARCHAR,
"parks_nm" VARCHAR,
"hadevelopt" VARCHAR,
"x_coord_cd" DOUBLE,
"y_coord_cd" DOUBLE,
"latitude" DOUBLE,
"longitude" DOUBLE,
"lat_lon" VARCHAR
);CREATE TABLE population_by_borough_nyc (
"age_group" VARCHAR,
"borough" VARCHAR,
"n_1950" BIGINT -- 1950,
"n_1950_boro_share_of_nyc_total" VARCHAR -- 1950 - Boro Share Of NYC Total,
"n_1960" BIGINT -- 1960,
"n_1960_boro_share_of_nyc_total" VARCHAR -- 1960 - Boro Share Of NYC Total,
"n_1970" BIGINT -- 1970,
"n_1970_boro_share_of_nyc_total" VARCHAR -- 1970 - Boro Share Of NYC Total,
"n_1980" BIGINT -- 1980,
"n_1980_boro_share_of_nyc_total" VARCHAR -- 1980 - Boro Share Of NYC Total,
"n_1990" BIGINT -- 1990,
"n_1990_boro_share_of_nyc_total" VARCHAR -- 1990 - Boro Share Of NYC Total,
"n_2000" BIGINT -- 2000,
"n_2000_boro_share_of_nyc_total" VARCHAR -- 2000 - Boro Share Of NYC Total,
"n_2010" BIGINT -- 2010,
"n_2010_boro_share_of_nyc_total" VARCHAR -- 2010 - Boro Share Of NYC Total,
"n_2020" BIGINT -- 2020,
"n_2020_boro_share_of_nyc_total" VARCHAR -- 2020 - Boro Share Of NYC Total,
"n_2030" BIGINT -- 2030,
"n_2030_boro_share_of_nyc_total" VARCHAR -- 2030 - Boro Share Of NYC Total,
"n_2040" BIGINT -- 2040,
"n_2040_boro_share_of_nyc_total" VARCHAR -- 2040 - Boro Share Of NYC Total
);Anyone who has the link will be able to view this.