NYC Restaurant Inspections
~400k Rows of Restaurant Inspections Data
@kaggle.new_york_city_nyc_inspections
~400k Rows of Restaurant Inspections Data
@kaggle.new_york_city_nyc_inspections
Restaurant inspections for permitted food establishments in NYC. Restaurants are graded on A-F scale with regular visits by city health department.
Dataset includes address, cuisine description, inspection date, type, action, violation code and description(s). Data covers all of NYC and starts Jan 1, 2010-Aug 29, 2017.
Data was collected by the NYC Department of Health and is available here.
CREATE TABLE dohmh_new_york_city_restaurant_inspection_results (
"camis" BIGINT,
"dba" VARCHAR,
"boro" VARCHAR,
"building" VARCHAR,
"street" VARCHAR,
"zipcode" DOUBLE,
"phone" VARCHAR,
"cuisine_description" VARCHAR,
"inspection_date" TIMESTAMP,
"action" VARCHAR,
"violation_code" VARCHAR,
"violation_description" VARCHAR,
"critical_flag" VARCHAR,
"score" DOUBLE,
"grade" VARCHAR,
"grade_date" TIMESTAMP,
"record_date" TIMESTAMP,
"inspection_type" VARCHAR
);Anyone who has the link will be able to view this.