├── .gitignore ├── README.md ├── compute_walkability.py ├── config ├── osm2pgsql.style └── profiles │ └── foot.lua ├── data ├── OSM │ └── .gitignore ├── SQL │ ├── first-DIY-step.sql │ ├── minimal.sql │ ├── minimal_materialize.sql │ ├── security.sql │ ├── urban_atlas.sql │ └── walkability.sql ├── census │ └── .gitignore ├── generated_files │ └── .gitignore ├── shps │ └── .gitignore └── streetview │ └── .gitignore ├── data_processing_houses.ipynb ├── data_processing_neighborhood.py ├── figures ├── explain_prediction.pdf └── top_importance.pdf ├── plots.ipynb ├── predict.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/README.md -------------------------------------------------------------------------------- /compute_walkability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/compute_walkability.py -------------------------------------------------------------------------------- /config/osm2pgsql.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/config/osm2pgsql.style -------------------------------------------------------------------------------- /config/profiles/foot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/config/profiles/foot.lua -------------------------------------------------------------------------------- /data/OSM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/OSM/.gitignore -------------------------------------------------------------------------------- /data/SQL/first-DIY-step.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/first-DIY-step.sql -------------------------------------------------------------------------------- /data/SQL/minimal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/minimal.sql -------------------------------------------------------------------------------- /data/SQL/minimal_materialize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/minimal_materialize.sql -------------------------------------------------------------------------------- /data/SQL/security.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/security.sql -------------------------------------------------------------------------------- /data/SQL/urban_atlas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/urban_atlas.sql -------------------------------------------------------------------------------- /data/SQL/walkability.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/SQL/walkability.sql -------------------------------------------------------------------------------- /data/census/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/census/.gitignore -------------------------------------------------------------------------------- /data/generated_files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/generated_files/.gitignore -------------------------------------------------------------------------------- /data/shps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/shps/.gitignore -------------------------------------------------------------------------------- /data/streetview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data/streetview/.gitignore -------------------------------------------------------------------------------- /data_processing_houses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data_processing_houses.ipynb -------------------------------------------------------------------------------- /data_processing_neighborhood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/data_processing_neighborhood.py -------------------------------------------------------------------------------- /figures/explain_prediction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/figures/explain_prediction.pdf -------------------------------------------------------------------------------- /figures/top_importance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/figures/top_importance.pdf -------------------------------------------------------------------------------- /plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/plots.ipynb -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denadai2/real-estate-neighborhood-prediction/HEAD/requirements.txt --------------------------------------------------------------------------------