Skip to content

Instantly share code, notes, and snippets.

@adlukasiak
Last active October 5, 2015 07:06
Show Gist options
  • Save adlukasiak/de994b4df3534147873c to your computer and use it in GitHub Desktop.
Save adlukasiak/de994b4df3534147873c to your computer and use it in GitHub Desktop.
Jersey City . Public Housing

The Montgomery Gardens public housing project has over 80% vacancy rate. It was vacated and recently imploaded on August 29, 2015. You can watch the exciting video here.

This interactive visualization looks at public housing projects' vacancy rates in comparison to total number of units, move ins and move outs.

There are several types of housing: Conventional Public Housing, Elderly/Disabled Developments, Homeownership Project, HOPE6 Developments, Non-Federal Affordable.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jersey City . Public Housing</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {
font-family: Helvetica, Arial, sans-serif;
background-color: white;
}
svg {
background-color: white;
}
h1 {
font-size: 24px;
margin: 0;
}
p {
font-size: 14px;
margin: 10px 0 0 0;
}
path {
stroke: gray;
stroke-width: 0.5;
}
path:hover,
g.highlight path:hover {
stroke: orange;
stroke-width: 2;
opacity: 1.0;
}
g.highlight path {
stroke: steelblue;
stroke-width: 2;
}
.axis path,
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.axis text {
font-family: sans-serif;
font-size: 11px;
}
#propertyName_list{
position:absolute;
left:650px;
margin-top:20px;
width: 170px;
}
#propertyName_list p{
margin: 5px;
padding: 3px;
cursor: pointer;
background-color:#dddddd;
}
#propertyName_list p:hover{background-color:steelblue;}
.axistitle{
font-size: 12px;
}
</style>
</head>
<body>
<h1>Vacancy Rates by Property</h1>
<p>Monthly vacancy rates Jan 2014-May 2015. Source: <a href="http://www.jerseycitynj.gov/data.aspx?id=14832">Jersey City Housing Authority</a>.</p>
<p>
<!-- inspiration for the buttons came from http://bl.ocks.org/d3noob/7030f35b72de721622b8 -->
<button id="vacancy">Vacancy Rate</button>
<button id="vacantUnits">Vacant Units</button>
<button id="totalUnits">Total Units</button>
</p>
<div id="propertyName_list"></div>
<script type="text/javascript">
var groups;
//Create a new, empty array to hold our restructured dataset
var dataset = [];
var padding = [ 50, 10, 100, 70 ]; //Top, right, bottom, left
var percent = d3.format(".0%");
var w = 700;
var h = 400;
//Set up date formatting and years
var dateFormat = d3.time.format("%B %Y");
var dateFormat2 = d3.time.format("%b %Y");
//Set up scales
var xScale = d3.time.scale()
.range([ padding[3], w - padding[1] - padding[3] ]);
var yScale = d3.scale.linear()
.range([ padding[0], h - padding[2] ]);
//Configure axis generators
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(15)
.tickFormat(function(d) {
return dateFormat2(d);
});
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left");
//Configure line generator
var line = d3.svg.line()
.x(function(d) {
return xScale(dateFormat.parse(d.years));
})
.y(function(d) {
return yScale(+d.amount);
});
//Create the empty SVG image
var svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
//Load Jersey City Housing Authority data
d3.csv("JCHAVacancies.csv", function(data) {
//Usefull reading for manipulating arrays: https://github.com/mbostock/d3/wiki/Arrays
var yearsArray = ["January 2014","February 2014","March 2014","April 2014","May 2014","June 2014",
"July 2014","August 2014","September 2014","October 2014","November 2014","December 2014",
"January 2015","February 2015","March 2015","April 2015","May 2015"];
//Loop once for each row in data
for (var i = 0; i < data.length; i++) {
var adding = true;
var ix = dataset.length;
// Checking if property is already stored in the dataset
for (var k = 0; k < dataset.length; k++) {
if ( dataset[k].propertyName == data[i].propertyName ) {
adding = false;
ix = k;
};
};
// Property is not in dataset yet, adding it
if (adding) {
dataset.push({
propertyName: data[i].propertyName,
propertyCategory: data[i].propertyCategory,
moveIns: [],
moveOuts: [],
vacancyDaysAllUnits: [],
totalUnits: [],
vacantUnits: [],
vacancyRate: []
});
};
// Adding values which are on each row
// parsing month and year string and converting them to date
var years = dateFormat.parse(data[i].month+" "+data[i].year);
// console.log(years);
dataset[ix].moveIns.push({ years: dateFormat(years), amount: data[i].moveIns });
dataset[ix].moveOuts.push({ years: dateFormat(years), amount: data[i].moveOuts });
dataset[ix].vacancyDaysAllUnits.push({ years: dateFormat(years), amount: data[i].vacancyDaysAllUnits });
dataset[ix].totalUnits.push({ years: dateFormat(years), amount: data[i].totalUnits });
dataset[ix].vacantUnits.push({ years: dateFormat(years), amount: data[i].vacantUnits });
dataset[ix].vacancyRate.push({ years: dateFormat(years), amount: data[i].vacancyRate });
};
// dataset looks like this
// [
// {
// propetyName: "Marion Gardens",
// propetyCategory: "Conventional Public Housing",
// moveIns: [
// { year: "January2014", amount: 1 },
// { year: "February2014", amount: 2 },
// { year: "March2014", amount: 3 },
// …
// ],
// moveOuts: [
// { year: "January2014", amount: 1 },
// { year: "February2014", amount: 2 },
// { year: "March2014", amount: 3 },
// …
// ]
// },…
// ]
//Uncomment to log the original data to the console
// console.log(data);
//Uncomment to log the newly restructured dataset to the console
console.log(dataset);
//Set scale domains
xScale.domain([
d3.min(yearsArray, function(d) {
return dateFormat.parse(d);
}),
d3.max(yearsArray, function(d) {
return dateFormat.parse(d);
})
]);
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.vacancyRate, function(d) {
return +d.amount;
});
}),
0
]);
console.log("done with scale domains");
//Make a group for each property
groups = svg.selectAll("g")
.data(dataset)
.enter()
.append("g")
.classed("highlight", function(d) {
if (d.propertyCategory == "Homeownership Project" ) {
return true;
} else {
return false;
}
});
//Append a title with the country name (so we get easy tooltips)
groups.append("title")
.text(function(d) {
return d.propertyName;
});
//Within each group, create a new line/path,
//binding just the vacancyRate data to each one
groups.selectAll("path")
.data(function(d) {
return [ d.vacancyRate ];
})
.enter()
.append("path")
.attr("class", "line")
.attr("d", line)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-width", 2)
.transition()
.duration(1950)
.ease("linear")
.attrTween("stroke-dasharray", animateLine)
.attr("display", 1);
//Axes
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (h - padding[2]) + ")")
.call(xAxis)
.selectAll("text")
.attr("y", 0)
.attr("x", 9)
.attr("dy", ".35em")
.attr("transform", "rotate(90)")
.style("text-anchor", "start");
svg.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + (padding[3]) + ",0)")
.call(yAxis);
console.log("done done done");
});
//End Jersey City Housing Authority data load function
d3.select("#vacantUnits")
.on("click", function() {
//Update scale domain
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.vacantUnits, function(d) {
return +d.amount;
});
}),
0
]);
//Update the data
groups.selectAll("path")
.data(function(d) {
return [ d.vacantUnits ]; // set the new data
})
.attr("class", "line")
.attr("d", line) // apply the new data values
.transition()
.duration(1950)
.ease("linear")
.attrTween("stroke-dasharray", animateLine)
.attr("display", 1);
//Update axis
d3.select(".y.axis")
.transition()
.duration(1000)
.call(yAxis);
});
d3.select("#totalUnits")
.on("click", function() {
//Update scale domain
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.totalUnits, function(d) {
return +d.amount;
});
}),
0
]);
//Update the data
groups.selectAll("path")
.data(function(d) {
return [ d.totalUnits ]; // set the new data
})
.attr("class", "line")
.attr("d", line) // apply the new data values
.transition()
.duration(1950)
.ease("linear")
.attrTween("stroke-dasharray", animateLine)
.attr("display", 1);
//Update axis
d3.select(".y.axis")
.transition()
.duration(1000)
.call(yAxis);
});
d3.select("#vacancy")
.on("click", function() {
//Update scale domain
yScale.domain([
d3.max(dataset, function(d) {
return d3.max(d.vacancyRate, function(d) {
return +d.amount;
});
}),
0
]);
//Update the data
groups.selectAll("path")
.data(function(d) {
return [ d.vacancyRate ]; // set the new data
})
.attr("class", "line")
.attr("d", line) // apply the new data values
.transition()
.duration(1950)
.ease("linear")
.attrTween("stroke-dasharray", animateLine)
.attr("display", 1);
//Update axis
d3.select(".y.axis")
.transition()
.duration(1000)
.call(yAxis);
});
function animateLine() {
var l = this.getTotalLength();
i = d3.interpolateString("0," + l, l + "," + l);
return function(t) { return i(t); };
};
</script>
</body>
</html>
propertyCategory propertyName moveIns moveOuts vacancyDaysAllUnits totalUnits vacantUnits vacancyRate month year
Conventional Public Housing Marion Gardens 1 0 25 228 18 0.0789 January 2014
Conventional Public Housing Booker T. Washington 1 1 22 305 27 0.0885 January 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 2 0.0090 January 2014
Conventional Public Housing Holland Gardens 0 0 0 189 7 0.0370 January 2014
Conventional Public Housing Montgomery Gardens 0 1 0 434 370 0.8525 January 2014
Conventional Public Housing Curries Woods 0 0 0 295 17 0.0576 January 2014
Elderly/Disabled Developments Berry Gardens 1 2 122 356 32 0.0899 January 2014
Elderly/Disabled Developments Thomas J. Stewart 0 1 0 48 1 0.0208 January 2014
Non-Federal Affordable 254 Bergen Avenue 1 1 12 36 4 0.1111 January 2014
Non-Federal Affordable Arlington Gardens 1 1 28 90 9 0.1000 January 2014
HOPE6 Developments Lafayette Village 0 1 0 77 1 0.0130 January 2014
HOPE6 Developments Lafayette Senior Living 0 0 0 82 1 0.0122 January 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 January 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 January 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 0 0.0000 January 2014
HOPE6 Developments Gloria Robinson II 0 2 0 71 2 0.0282 January 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 January 2014
HOPE6 Developments Ocean Pointe (East and West) 1 0 7 48 1 0.0208 January 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 January 2014
HOPE6 Developments Glenview I 0 0 0 38 1 0.0263 January 2014
Homeownership Project Dwight St. Homes 0 0 0 22 6 0.2727 January 2014
Conventional Public Housing Marion Gardens 0 2 0 228 20 0.0877 February 2014
Conventional Public Housing Booker T. Washington 0 1 0 305 28 0.0918 February 2014
Conventional Public Housing Hudson Gardens 1 0 135 221 2 0.0090 February 2014
Conventional Public Housing Holland Gardens 0 1 0 189 9 0.0476 February 2014
Conventional Public Housing Montgomery Gardens 0 1 0 434 372 0.8571 February 2014
Conventional Public Housing Curries Woods 3 2 109 295 16 0.0542 February 2014
Elderly/Disabled Developments Berry Gardens 2 4 204 356 34 0.0955 February 2014
Elderly/Disabled Developments Thomas J. Stewart 0 0 0 48 1 0.0208 February 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 February 2014
Non-Federal Affordable Arlington Gardens 0 0 0 90 9 0.1000 February 2014
HOPE6 Developments Lafayette Village 1 1 20 77 1 0.0130 February 2014
HOPE6 Developments Lafayette Senior Living 0 0 0 82 1 0.0122 February 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 February 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 February 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 0 0.0000 February 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 2 0.0282 February 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 February 2014
HOPE6 Developments Ocean Pointe (East and West) 0 1 0 48 2 0.0417 February 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 February 2014
HOPE6 Developments Glenview I 1 0 14 38 0 0.0000 February 2014
Homeownership Project Dwight St. Homes 0 0 0 22 6 0.2727 February 2014
Conventional Public Housing Marion Gardens 2 3 211 228 21 0.0921 March 2014
Conventional Public Housing Booker T. Washington 2 3 107 305 29 0.0951 March 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 3 0.0136 March 2014
Conventional Public Housing Holland Gardens 1 0 258 189 8 0.0423 March 2014
Conventional Public Housing Montgomery Gardens 0 2 0 434 374 0.8618 March 2014
Conventional Public Housing Curries Woods 0 0 0 295 16 0.0542 March 2014
Elderly/Disabled Developments Berry Gardens 4 7 1029 356 37 0.1039 March 2014
Elderly/Disabled Developments Thomas J. Stewart 1 1 24 48 1 0.0208 March 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 March 2014
Non-Federal Affordable Arlington Gardens 1 0 10 90 8 0.0889 March 2014
HOPE6 Developments Lafayette Village 0 0 77 1 0.0130 March 2014
HOPE6 Developments Lafayette Senior Living 0 0 82 1 0.0122 March 2014
HOPE6 Developments Pacific Court 0 0 41 0 0.0000 March 2014
HOPE6 Developments Woodward Terrace 0 0 45 1 0.0222 March 2014
HOPE6 Developments Gloria Robinson I 0 0 58 0 0.0000 March 2014
HOPE6 Developments Gloria Robinson II 1 0 20 71 1 0.0141 March 2014
HOPE6 Developments Gloria Robinson III 0 0 24 0 0.0000 March 2014
HOPE6 Developments Ocean Pointe (East and West) 1 0 7 48 1 0.0208 March 2014
HOPE6 Developments Barbara Place Terrace 0 0 40 0 0.0000 March 2014
HOPE6 Developments Glenview I 0 0 38 0 0.0000 March 2014
Homeownership Project Dwight St. Homes 1 0 4 22 5 0.2273 March 2014
Conventional Public Housing Marion Gardens 3 2 97 228 21 0.0921 April 2014
Conventional Public Housing Booker T. Washington 6 7 1984 305 30 0.0984 April 2014
Conventional Public Housing Hudson Gardens 0 1 0 221 3 0.0136 April 2014
Conventional Public Housing Holland Gardens 2 1 520 189 8 0.0423 April 2014
Conventional Public Housing Montgomery Gardens 0 2 0 434 377 0.8687 April 2014
Conventional Public Housing Curries Woods 0 1 0 295 17 0.0576 April 2014
Elderly/Disabled Developments Berry Gardens 4 4 990 356 37 0.1039 April 2014
Elderly/Disabled Developments Thomas J. Stewart 1 1 14 48 1 0.0208 April 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 April 2014
Non-Federal Affordable Arlington Gardens 0 0 0 90 8 0.0889 April 2014
HOPE6 Developments Lafayette Village 0 0 0 77 1 0.0130 April 2014
HOPE6 Developments Lafayette Senior Living 0 0 0 82 2 0.0244 April 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 April 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 1 0.0222 April 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 0 0.0000 April 2014
HOPE6 Developments Gloria Robinson II 1 0 35 71 0 0.0000 April 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 April 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 1 0.0208 April 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 April 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 April 2014
Homeownership Project Dwight St. Homes 0 0 0 20 5 0.2500 April 2014
Conventional Public Housing Marion Gardens 0 2 0 228 23 0.1009 May 2014
Conventional Public Housing Booker T. Washington 0 1 0 305 31 0.1016 May 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 3 0.0136 May 2014
Conventional Public Housing Holland Gardens 1 0 47 189 6 0.0317 May 2014
Conventional Public Housing Montgomery Gardens 0 1 0 434 378 0.8710 May 2014
Conventional Public Housing Curries Woods 2 3 650 295 18 0.0610 May 2014
Elderly/Disabled Developments Berry Gardens 6 1 2309 356 32 0.0899 May 2014
Elderly/Disabled Developments Thomas J. Stewart 0 0 0 48 1 0.0208 May 2014
Non-Federal Affordable 254 Bergen Avenue 1 0 90 36 3 0.0833 May 2014
Non-Federal Affordable Arlington Gardens 0 0 0 90 8 0.0889 May 2014
HOPE6 Developments Lafayette Village 1 1 15 77 1 0.0130 May 2014
HOPE6 Developments Lafayette Senior Living 0 0 0 82 2 0.0244 May 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 May 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 1 0.0222 May 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 0 0.0000 May 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 May 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 May 2014
HOPE6 Developments Ocean Pointe (East and West) 1 0 10 48 0 0.0000 May 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 May 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 May 2014
Homeownership Project Dwight St. Homes 0 0 0 20 5 0.2500 May 2014
Conventional Public Housing Marion Gardens 0 2 0 228 23 0.1009 June 2014
Conventional Public Housing Booker T. Washington 1 3 54 305 33 0.1082 June 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 3 0.0136 June 2014
Conventional Public Housing Holland Gardens 1 0 47 189 6 0.0317 June 2014
Conventional Public Housing Montgomery Gardens 0 0 0 434 381 0.8779 June 2014
Conventional Public Housing Curries Woods 2 1 1521 295 17 0.0576 June 2014
Elderly/Disabled Developments Berry Gardens 4 3 870 356 32 0.0899 June 2014
Elderly/Disabled Developments Thomas J. Stewart 0 0 0 48 1 0.0208 June 2014
Non-Federal Affordable 254 Bergen Avenue 0 1 0 36 3 0.0833 June 2014
Non-Federal Affordable Arlington Gardens 1 0 30 90 7 0.0778 June 2014
HOPE6 Developments Lafayette Village 0 0 0 77 1 0.0130 June 2014
HOPE6 Developments Lafayette Senior Living 0 1 0 82 3 0.0366 June 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 June 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 1 0.0222 June 2014
HOPE6 Developments Gloria Robinson I 0 1 0 58 1 0.0172 June 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 June 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 June 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 0 0.0000 June 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 June 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 June 2014
Homeownership Project Dwight St. Homes 0 0 0 20 5 0.2500 June 2014
Conventional Public Housing Marion Gardens 1 1 84 228 23 0.1009 July 2014
Conventional Public Housing Booker T. Washington 0 2 0 305 35 0.1148 July 2014
Conventional Public Housing Hudson Gardens 1 2 181 221 4 0.0181 July 2014
Conventional Public Housing Holland Gardens 0 1 0 189 7 0.0370 July 2014
Conventional Public Housing Montgomery Gardens 0 0 0 434 381 0.8779 July 2014
Conventional Public Housing Curries Woods 1 4 395 295 20 0.0678 July 2014
Elderly/Disabled Developments Berry Gardens 0 2 0 356 34 0.0955 July 2014
Elderly/Disabled Developments Thomas J. Stewart 1 0 26 48 0 0.0000 July 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 3 0.0833 July 2014
Non-Federal Affordable Arlington Gardens 0 0 0 90 7 0.0778 July 2014
HOPE6 Developments Lafayette Village 1 0 15 77 0 0.0000 July 2014
HOPE6 Developments Lafayette Senior Living 0 1 0 82 4 0.0488 July 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 July 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 1 0.0222 July 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 1 0.0172 July 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 July 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 July 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 0 0.0000 July 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 July 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 July 2014
Homeownership Project Dwight St. Homes 0 0 0 16 4 0.2500 July 2014
Conventional Public Housing Marion Gardens 0 2 0 228 23 0.1009 August 2014
Conventional Public Housing Booker T. Washington 4 0 1211 305 31 0.1016 August 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 4 0.0181 August 2014
Conventional Public Housing Holland Gardens 0 0 0 189 7 0.0370 August 2014
Conventional Public Housing Montgomery Gardens 0 0 0 434 381 0.8779 August 2014
Conventional Public Housing Curries Woods 0 0 0 295 20 0.0678 August 2014
Elderly/Disabled Developments Berry Gardens 1 2 164 356 35 0.0983 August 2014
Elderly/Disabled Developments Thomas J. Stewart 0 1 0 48 1 0.0208 August 2014
Non-Federal Affordable 254 Bergen Avenue 0 1 0 36 4 0.1111 August 2014
Non-Federal Affordable Arlington Gardens 1 0 30 90 6 0.0667 August 2014
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 August 2014
HOPE6 Developments Lafayette Senior Living 1 0 25 82 3 0.0366 August 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 August 2014
HOPE6 Developments Woodward Terrace 1 0 11 45 0 0.0000 August 2014
HOPE6 Developments Gloria Robinson I 0 1 0 58 2 0.0345 August 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 August 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 August 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 0 0.0000 August 2014
HOPE6 Developments Barbara Place Terrace 0 1 0 40 1 0.0250 August 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 August 2014
Homeownership Project Dwight St. Homes 0 1 0 16 5 0.3125 August 2014
Conventional Public Housing Marion Gardens 0 4 0 228 26 0.1140 September 2014
Conventional Public Housing Booker T. Washington 0 1 0 305 32 0.1049 September 2014
Conventional Public Housing Hudson Gardens 1 0 144 221 3 0.0136 September 2014
Conventional Public Housing Holland Gardens 0 1 0 189 8 0.0423 September 2014
Conventional Public Housing Montgomery Gardens 0 0 0 434 381 0.8779 September 2014
Conventional Public Housing Curries Woods 0 1 0 295 21 0.0712 September 2014
Elderly/Disabled Developments Berry Gardens 1 4 313 356 38 0.1067 September 2014
Elderly/Disabled Developments Thomas J. Stewart 1 0 31 48 0 0.0000 September 2014
Non-Federal Affordable 254 Bergen Avenue 0 1 0 36 4 0.1111 September 2014
Non-Federal Affordable Arlington Gardens 0 1 0 90 7 0.0778 September 2014
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 September 2014
HOPE6 Developments Lafayette Senior Living 1 0 109 82 2 0.0244 September 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 September 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 September 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 2 0.0345 September 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 September 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 September 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 0 0.0000 September 2014
HOPE6 Developments Barbara Place Terrace 0 1 0 40 1 0.0250 September 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 September 2014
Homeownership Project Dwight St. Homes 0 0 0 22 5 0.2273 September 2014
Conventional Public Housing Marion Gardens 2 0 689 228 24 0.1053 October 2014
Conventional Public Housing Booker T. Washington 1 4 752 305 35 0.1148 October 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 3 0.0136 October 2014
Conventional Public Housing Holland Gardens 0 1 0 189 8 0.0423 October 2014
Conventional Public Housing Montgomery Gardens 0 2 0 434 382 0.8802 October 2014
Conventional Public Housing Curries Woods 1 3 750 295 23 0.0780 October 2014
Elderly/Disabled Developments Berry Gardens 0 5 0 356 43 0.1208 October 2014
Elderly/Disabled Developments Thomas J. Stewart 0 0 0 48 0 0.0000 October 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 October 2014
Non-Federal Affordable Arlington Gardens 3 4 180 90 8 0.0889 October 2014
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 October 2014
HOPE6 Developments Lafayette Senior Living 0 0 0 82 2 0.0244 October 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 October 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 October 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 2 0.0345 October 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 October 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 October 2014
HOPE6 Developments Ocean Pointe (East and West) 0 1 0 48 2 0.0417 October 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 1 0.0250 October 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 October 2014
Homeownership Project Dwight St. Homes 0 0 0 22 5 0.2273 October 2014
Conventional Public Housing Marion Gardens 2 3 321 228 25 0.1096 November 2014
Conventional Public Housing Booker T. Washington 1 2 549 305 36 0.1180 November 2014
Conventional Public Housing Hudson Gardens 1 0 100 221 2 0.0090 November 2014
Conventional Public Housing Holland Gardens 0 3 0 189 10 0.0529 November 2014
Conventional Public Housing Montgomery Gardens 0 4 0 434 386 0.8894 November 2014
Conventional Public Housing Curries Woods 2 2 452 295 23 0.0780 November 2014
Elderly/Disabled Developments Berry Gardens 4 2 1915 356 41 0.1152 November 2014
Elderly/Disabled Developments Thomas J. Stewart 0 1 0 48 1 0.0208 November 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 November 2014
Non-Federal Affordable Arlington Gardens 2 1 240 90 7 0.0778 November 2014
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 November 2014
HOPE6 Developments Lafayette Senior Living 2 0 289 82 1 0.0122 November 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 November 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 November 2014
HOPE6 Developments Gloria Robinson I 1 0 127 58 1 0.0172 November 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 November 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 November 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 3 0.0625 November 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 1 0.0250 November 2014
HOPE6 Developments Glenview I 0 0 38 0 0.0000 November 2014
Homeownership Project Dwight St. Homes 0 0 0 22 5 0.2273 November 2014
Conventional Public Housing Marion Gardens 0 3 90 228 28 0.1228 December 2014
Conventional Public Housing Booker T. Washington 3 3 1047 305 36 0.1180 December 2014
Conventional Public Housing Hudson Gardens 0 0 0 221 3 0.0136 December 2014
Conventional Public Housing Holland Gardens 0 1 30 189 11 0.0582 December 2014
Conventional Public Housing Montgomery Gardens 0 0 0 434 316 0.7281 December 2014
Conventional Public Housing Curries Woods 0 2 60 295 25 0.0847 December 2014
Elderly/Disabled Developments Berry Gardens 2 3 222 356 42 0.1180 December 2014
Elderly/Disabled Developments Thomas J. Stewart 1 1 44 48 1 0.0208 December 2014
Non-Federal Affordable 254 Bergen Avenue 0 0 0 36 4 0.1111 December 2014
Non-Federal Affordable Arlington Gardens 0 0 0 90 7 0.0778 December 2014
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 December 2014
HOPE6 Developments Lafayette Senior Living 0 3 0 82 4 0.0488 December 2014
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 December 2014
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 December 2014
HOPE6 Developments Gloria Robinson I 0 0 0 58 1 0.0172 December 2014
HOPE6 Developments Gloria Robinson II 0 0 0 71 0 0.0000 December 2014
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 December 2014
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 48 3 0.0625 December 2014
HOPE6 Developments Barbara Place Terrace 0 0 0 40 1 0.0250 December 2014
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 December 2014
Homeownership Project Dwight St. Homes 0 0 0 22 5 0.2273 December 2014
Conventional Public Housing Marion Gardens 0 3 841 228 28 0.1228 January 2015
Conventional Public Housing Booker T. Washington 1 4 900 305 39 0.1279 January 2015
Conventional Public Housing Hudson Gardens 0 0 90 221 3 0.0136 January 2015
Conventional Public Housing Holland Gardens 0 1 330 189 11 0.0582 January 2015
Conventional Public Housing Montgomery Gardens 0 2 0 434 316 0.7281 January 2015
Conventional Public Housing Curries Woods 4 2 690 295 23 0.0780 January 2015
Elderly/Disabled Developments Berry Gardens 0 2 1320 356 44 0.1236 January 2015
Elderly/Disabled Developments Thomas J. Stewart 0 3 120 48 4 0.0833 January 2015
Non-Federal Affordable 254 Bergen Avenue 1 0 90 36 3 0.0833 January 2015
Non-Federal Affordable Arlington Gardens 1 2 240 90 8 0.0889 January 2015
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 January 2015
HOPE6 Developments Lafayette Senior Living 0 0 0 82 4 0.0488 January 2015
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 January 2015
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 January 2015
HOPE6 Developments Gloria Robinson I 0 2 0 58 3 0.0517 January 2015
HOPE6 Developments Gloria Robinson II 0 3 0 71 3 0.0423 January 2015
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 January 2015
HOPE6 Developments Ocean Pointe (East and West) 0 1 0 40 4 0.1000 January 2015
HOPE6 Developments Barbara Place Terrace 1 0 0 40 0 0.0000 January 2015
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 January 2015
Homeownership Project Dwight St. Homes 1 0 120 16 4 0.2500 January 2015
Conventional Public Housing Marion Gardens 3 3 870 228 29 0.1272 February 2015
Conventional Public Housing Booker T. Washington 2 0 1110 305 37 0.1213 February 2015
Conventional Public Housing Hudson Gardens 0 0 120 221 3 0.0136 February 2015
Conventional Public Housing Holland Gardens 0 3 360 189 11 0.0582 February 2015
Conventional Public Housing Montgomery Gardens 0 2 0 434 318 0.7327 February 2015
Conventional Public Housing Curries Woods 4 2 720 295 23 0.0780 February 2015
Elderly/Disabled Developments Berry Gardens 3 3 1350 356 44 0.1236 February 2015
Elderly/Disabled Developments Thomas J. Stewart 1 0 90 48 3 0.0625 February 2015
Non-Federal Affordable 254 Bergen Avenue 1 0 120 36 3 0.0833 February 2015
Non-Federal Affordable Arlington Gardens 3 0 150 90 5 0.0556 February 2015
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 February 2015
HOPE6 Developments Lafayette Senior Living 0 1 0 82 5 0.0610 February 2015
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 February 2015
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 February 2015
HOPE6 Developments Gloria Robinson I 0 1 0 58 3 0.0517 February 2015
HOPE6 Developments Gloria Robinson II 0 1 0 71 4 0.0563 February 2015
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 February 2015
HOPE6 Developments Ocean Pointe (East and West) 1 1 0 40 4 0.1000 February 2015
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 February 2015
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 February 2015
Homeownership Project Dwight St. Homes 1 0 90 16 3 0.1875 February 2015
Conventional Public Housing Marion Gardens 0 0 900 228 29 0.1272 March 2015
Conventional Public Housing Booker T. Washington 0 3 1200 305 40 0.1311 March 2015
Conventional Public Housing Hudson Gardens 1 1 150 221 4 0.0181 March 2015
Conventional Public Housing Holland Gardens 0 1 390 189 12 0.0635 March 2015
Conventional Public Housing Montgomery Gardens 0 0 0 434 320 0.7373 March 2015
Conventional Public Housing Curries Woods 1 0 600 295 20 0.0678 March 2015
Elderly/Disabled Developments Berry Gardens 1 2 1380 356 45 0.1264 March 2015
Elderly/Disabled Developments Thomas J. Stewart 0 0 120 48 3 0.0625 March 2015
Non-Federal Affordable 254 Bergen Avenue 1 0 60 36 2 0.0556 March 2015
Non-Federal Affordable Arlington Gardens 1 0 180 90 4 0.0444 March 2015
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 March 2015
HOPE6 Developments Lafayette Senior Living 0 0 0 82 5 0.0610 March 2015
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 March 2015
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 March 2015
HOPE6 Developments Gloria Robinson I 1 0 0 58 2 0.0345 March 2015
HOPE6 Developments Gloria Robinson II 0 0 0 71 4 0.0563 March 2015
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 March 2015
HOPE6 Developments Ocean Pointe (East and West) 1 0 0 40 3 0.0750 March 2015
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 March 2015
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 March 2015
Homeownership Project Dwight St. Homes 1 0 120 16 3 0.1875 March 2015
Conventional Public Housing Marion Gardens 1 2 849 228 30 0.1316 April 2015
Conventional Public Housing Booker T. Washington 3 2 1170 305 39 0.1279 April 2015
Conventional Public Housing Hudson Gardens 0 0 120 221 4 0.0181 April 2015
Conventional Public Housing Holland Gardens 2 2 360 189 12 0.0635 April 2015
Conventional Public Housing Montgomery Gardens 0 0 0 434 392 0.9032 April 2015
Conventional Public Housing Curries Woods 5 7 660 295 22 0.0746 April 2015
Elderly/Disabled Developments Berry Gardens 3 1 1290 356 43 0.1208 April 2015
Elderly/Disabled Developments Thomas J. Stewart 1 0 60 48 2 0.0417 April 2015
Non-Federal Affordable 254 Bergen Avenue 1 0 60 36 2 0.0556 April 2015
Non-Federal Affordable Arlington Gardens 0 0 120 90 4 0.0444 April 2015
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 April 2015
HOPE6 Developments Lafayette Senior Living 0 0 0 82 5 0.0610 April 2015
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 April 2015
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 April 2015
HOPE6 Developments Gloria Robinson I 0 0 0 58 2 0.0345 April 2015
HOPE6 Developments Gloria Robinson II 2 0 0 71 1 0.0141 April 2015
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 April 2015
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 40 2 0.0500 April 2015
HOPE6 Developments Barbara Place Terrace 0 0 0 40 0 0.0000 April 2015
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 April 2015
Homeownership Project Dwight St. Homes 0 0 90 16 3 0.1875 April 2015
Conventional Public Housing Marion Gardens 1 2 900 228 30 0.1316 May 2015
Conventional Public Housing Booker T. Washington 4 3 1140 305 38 0.1246 May 2015
Conventional Public Housing Hudson Gardens 0 0 120 221 4 0.0181 May 2015
Conventional Public Housing Holland Gardens 0 0 360 189 12 0.0635 May 2015
Conventional Public Housing Montgomery Gardens 0 0 0 434 392 0.9032 May 2015
Conventional Public Housing Curries Woods 1 2 690 295 23 0.0780 May 2015
Elderly/Disabled Developments Berry Gardens 0 3 1410 356 47 0.1320 May 2015
Elderly/Disabled Developments Thomas J. Stewart 0 2 120 48 4 0.0833 May 2015
Non-Federal Affordable 254 Bergen Avenue 1 0 60 36 2 0.0556 May 2015
Non-Federal Affordable Arlington Gardens 0 0 120 90 4 0.0444 May 2015
HOPE6 Developments Lafayette Village 0 0 0 77 0 0.0000 May 2015
HOPE6 Developments Lafayette Senior Living 0 0 0 82 5 0.0610 May 2015
HOPE6 Developments Pacific Court 0 0 0 41 0 0.0000 May 2015
HOPE6 Developments Woodward Terrace 0 0 0 45 0 0.0000 May 2015
HOPE6 Developments Gloria Robinson I 1 0 0 58 1 0.0172 May 2015
HOPE6 Developments Gloria Robinson II 0 0 0 71 1 0.0141 May 2015
HOPE6 Developments Gloria Robinson III 0 0 0 24 0 0.0000 May 2015
HOPE6 Developments Ocean Pointe (East and West) 0 0 0 40 2 0.0500 May 2015
HOPE6 Developments Barbara Place Terrace 0 0 0 40 1 0.0250 May 2015
HOPE6 Developments Glenview I 0 0 0 38 0 0.0000 May 2015
Homeownership Project Dwight St. Homes 0 0 90 16 3 0.1875 May 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment