This repository contains data, analytic code, and findings that support portions of the BuzzFeed News article, “As Their Neighborhoods Grew Whiter and Wealthier, These Minority-Owned Businesses Found Themselves Targeted By Police,” published August 27, 2020. Please read that article, which contains important context and details, before proceeding.
The analysis uses the following data sources:
New York Police Department data on M.A.R.C.H. targeting, obtained and published by the New York City Artist Coalition. The data/march_raids_with_lat.csv
spreadsheet lists the M.A.R.C.H. targets, with latitude and longitude coordinates added by Brian Abelson. The data was published in 2018 and contains potential M.A.R.C.H. raid targets from 2012 to 2017. Abelson told BuzzFeed News that it was unclear whether NYPD raided every address listed in the data and would not answer questions about the data.
The data/311_Service_Requests_from_2010_to_Present.csv
spreadsheet lists complaints that were affiliated with the address of one specific bar featured in the story, Ode To Babel, obtained through NYC's 311 data portal.
BuzzFeed News downloaded shapefiles detailing the geographic boundaries and Census tracts for the state of New York, from the Census Bureau’s website, saved in data/censusTracts/states/
.
The data/gentrification.csv
spreadsheet comes a previous BuzzFeed News analysis, which computed gentrification metrics for all Census tracts in Atlanta, Baltimore, New York, Oakland and Washington, DC. It includes the following relevant columns:
GEOID
— Census tract IDtotal_population_17
— The tract’s total population in 2017gentrified
— Whether the tract gentrified between 2000 and 2017pct_white_alone_change
— Percentage-point change for population that was white alonepct_black_alone_change
— Percentage-point change for population that was black alonepct_native_alone_change
— Percentage-point change for population that was Native Americanpct_asian_alone_change
— Percentage-point change for population that was Asian alonepct_hispanic_or_latino_alone_change
— Percentage-point change for population that was Hispanic or Latino alonepct_native_hawaiian_pacific_islander_change
— Percentage-point change for population that was Native Hawaiian or Pacific Islandermedian_income_00
- the tract's median income in 2000median_home_value_00
- the tract's median home value in 2000median_income_17
- the tract's median income in 2017median_home_value_17
- the tract's median home value in 2017
We used the Bureau of Labor Statistics Inflation Calculator to find an inflation rate to adjust median incomes and median home values for inflation (values are in 2017 dollars and adjusted from January 2000 to January 2017). The NYC Population FactFinder tool was used to identify a list of Census tracts that are adjacent to the tract where Friends and Lovers is located.
The Python code for BuzzFeed News analysis, can be found in this repository's 01-march-and-311-analysis.ipynb
notebook. In it, we conduct the following analyses:
- Identify M.A.R.C.H. listings in the area surrounding one of the bars mentioned in the story
- Count how often each address, in that area, occurs in the data
- Count the number of noise complaints, over time, affiliated with Ode to Babel's address
The notebook produces the following files:
output/neighborhood_raids.csv
— a list of all entries in the M.A.R.C.H. in the Census tracts of interest merged with demographic dataoutput/neighborhood_target_list.csv
— a tally of how often each address shows up in the list of M.A.R.C.H. targets in the Census tracts of interest. This was information that was used to do on-the-ground reporting.output/noise_complaints_ode_to_babel.csv
— a monthly aggregate of noise complaints related to the address where Ode to Babel is located
All code in this repository is available under the MIT License. All data files in the output/ directory are available under the Creative Commons Attribution 4.0 International (CC BY 4.0) license. All data files in the data/ directory are available, under their own terms, from the sources described above.
Contact Lam Thuy Vo at [email protected].
Looking for more from BuzzFeed News? Click here for a list of our open-sourced projects, data, and code.