powered by
NYC Restaurant Health Violations
ViolationsViolationCodesCuisines
ViolationCodes
Cuisines
A data frame with 480,621 observations on the following 16 variables.
camis
unique identifier
dba
full name doing business as
boro
borough of New York
building
building name
street
street address
zipcode
phone
phone number
inspection_date
inspection date
action
action taken
violation_code
violation code, see ViolationCodes
score
inspection score
grade
inspection grade
grade_date
grade date
record_date
recording date
inspection_type
inspect type
cuisine_code
cuisine code, see Cuisines
A data frame with 174 observations on the following 3 variables.
a factor with many levels
critical_flag
is violation critical: a factor with levels N Y
N
Y
violation_description
violation description
A data frame with 84 observations on the following 2 variables.
a character vector
cuisine_description
ViolationCodes, Cuisines
data(Violations) if (require(dplyr)) { Violations %>% inner_join(Cuisines, by = "cuisine_code") %>% filter(cuisine_description == "American") %>% arrange(grade_date) %>% head() }
Run the code above in your browser using DataLab