This is a report showing the distribution of sq ft of enclosed vs. unenclosed sidewalk cafes in NYC. This report was generated on Sun Apr 07 11:09:18 2019

The data was split into two dfs with enclosed and unenclosed data

enclosed <- subset.data.frame(sidewalk, sidewalk$Sidewalk.Cafe.Type == "Enclosed")
unenclosed <- subset.data.frame(sidewalk, sidewalk$Sidewalk.Cafe.Type == "Unenclosed")

The data was then plotted with this code:

boxplot(enclosed$Lic.Area.Sq.Ft, unenclosed$Lic.Area.Sq.Ft, names = c("Enclosed", "Unenclosed"), main = "NYC Sidewalk Cafe Size")

Summary

The median size of the reported 147 enclosed cafes is 325.5 square feet. The largest enclosed cafe is 1044 square feet and the smallest is 1 square foot.

The median size of the reported 861 enclosed cafes is 202 square feet. The largest enclosed cafe is 1300 square feet and the smallest is 30 square foot.