This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 %>% |