An open API service indexing awesome lists of open source software.

https://github.com/pjsier/cps-suspension-analysis

Working with Chicago Public Schools suspension data
https://github.com/pjsier/cps-suspension-analysis

Last synced: 11 months ago
JSON representation

Working with Chicago Public Schools suspension data

Awesome Lists containing this project

README

          

# CPS Suspension Data Analysis

Working with CPS suspension data from https://github.com/hunterowens/cps-suspension

## How to setup (Mac OS X)
Clone the repo, `cd` into it
```
docker-machine create -d virtualbox cps
eval $(docker-machine env cps)
docker build -t cps .
```

Then, after it finishes, run
`docker run -v /ABSOLUTE/PATH/cps-suspension-analysis:/home/jupyter -p 80:8888 -d cps`
and access the repo at the IP indicated by running `docker-machine ip cps`

To end the process, run `docker ps` to get the container ID, and then
`docker rm -f CONTAINER_ID` to end the process.