Skip to content

Instantly share code, notes, and snippets.

View pierrelafortune's full-sized avatar

pierrelafortune

View GitHub Profile
@pierrelafortune
pierrelafortune / nyc restaurant violations
Last active October 23, 2021 15:26
nyc restaurant violations
# data https://data.cityofnewyork.us/Health/DOHMH-New-York-City-Restaurant-Inspection-Results/43nn-pn8j
# Which are most likely to be violated for critical things like live mice?
library(tidyverse)
library(scales)
nyc_restaurants <- read_csv("Downloads/nyc_restaurants.csv")
# Gradable inspections
ny <- nyc_restaurants %>%