Chicago / buildings

A project to create a simple interface for visualizing building data.
https://github.com/Chicago/buildings/wiki
MIT License
5 stars 1 forks source link

Model Buildings #22

Closed nicklucius closed 7 years ago

nicklucius commented 7 years ago

Discussions so far have included:

  1. Model feature importance for each potential feature
  2. Use a sigmoid function to separate buildings into two classes
  3. Use a linear function to model buildings evenly, so that there is not a glut of buildings at either end of the classification.
nicklucius commented 7 years ago

Will use Ridge regularization. Also will keep in mind Lasso if we eventually have a lot of predictors.

nicklucius commented 7 years ago
nicklucius commented 7 years ago

Currently there is one predictor in the prototype of the building.json file: tax delinquencies. Here is a simple linear regression for predicting buildings that need demolition based solely on tax delinquencies. The dots are overplotted so no patterns can be really be seen, but the regression line shows the trend.

simple-regression-taxsale-demo

Also, here is the breakdown of buildings with a middle range of tax delinquencies, by whether they were recommended for demolition.

buildings-with-taxsales

Likewise, here is a breakdown of buildings with no tax delinquencies:

buildings-without-taxsales

Tax delinquency seems to have some explanatory value, but more predictors are needed.

nicklucius commented 7 years ago

Up next:

nicklucius commented 7 years ago

Modeling and analysis using the linked building data can be found here: https://cdn.rawgit.com/Chicago/buildings/24e0ddb4/classify-buildings.html