This is a report showing the distribution of the square footage of enclosed VS unenclosed sidewalk cafes. It is based on the latest release of data by NYC at the time of the report generation. This report was generated on Tue Sep 9 23:45:49 2025.

library(dplyr)
enclosed <- filter(sidewalk, sidewalk$Sidewalk.Cafe.Type == 'Enclosed')
unenclosed <- filter(sidewalk, sidewalk$Sidewalk.Cafe.Type == 'Unenclosed')
boxplot(enclosed$Lic.Area.Sq.Ft, unenclosed$Lic.Area.Sq.Ft, names=c("Enclosed", "Unenclosed"), main="NYC Sidewalk Cafe Size")