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
- Host: GitHub
- URL: https://github.com/pjsier/cps-suspension-analysis
- Owner: pjsier
- License: mit
- Created: 2016-02-22T23:24:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T00:44:26.000Z (about 9 years ago)
- Last Synced: 2025-02-22T23:42:08.895Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 1.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.