- NTA Background and Importance
- Data and Indicators
- Implementation in R
- NTA Maps
- Conclusion
Source: (https://www.theodysseyonline.com/outsiders-take-life-nyc)
April 19, 2017
Source: (https://www.theodysseyonline.com/outsiders-take-life-nyc)
Existing scales are not optimal
Census tracts (n=2166) are often too small to provide reliable estimates
Community Districts (n=59), are larger geographically but contain a median population of 140,000 residents, meaning heterogeneity within these populations could be obscured
Indicator | Numerator | Denominator |
---|---|---|
Employment | Unemployed | Civilian labor force |
Poverty | Households reporting income below the federal poverty level | Households for whom poverty status is determined |
Educational Attainment | Less than High School | Population 25 years and over |
Birthplace | Foreign-born | Total population |
Crowding | 1.51 or more occupants per room | Occupied housing units |
Health Insurance | No health insurance coverage | Civilian non-instutionalized population |
library(ggplot2) ggplot() + #NTA polygon geom_polygon(data = my_df, aes(x = long, y = lat, group = group, fill = Per_FB_quantiles)) + #NTA outline geom_path(data = my_df, aes(x = long, y = lat, group = group), color = "black", size = 0.01) + coord_map() + labs(title="Poverty by Neighborhood Tabulation Area (NTA), New York City, 2010-2014", caption=paste("Source: American Community Survey (2010-2014)", sep="\n")) + labs(fill="Percent") + scale_fill_brewer ("Percent by NTA (quartiles)", palette = 1, direction=1, na.value='gray74')