├── .gitignore ├── LICENSE ├── README.md ├── data └── raw │ └── .gitkeep ├── notebooks ├── .gitkeep └── eviction-data-case-study.ipynb ├── references ├── .gitkeep └── DATA_DICTIONARY.txt ├── requirements.txt └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/README.md -------------------------------------------------------------------------------- /data/raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/eviction-data-case-study.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/notebooks/eviction-data-case-study.ipynb -------------------------------------------------------------------------------- /references/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /references/DATA_DICTIONARY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/references/DATA_DICTIONARY.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/requirements.txt -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivendataorg/odsc-actionable-ethics/HEAD/slides.pdf --------------------------------------------------------------------------------