This repository contains scripts and reports of the Wayne Country Indiana court records. The data contains reports on cases from 2018 and 2019 that were obtained from the Wayne County Court calendars available on DoxPop. Note that data before July 2018 was not available on DoxPop.
There are two different levels to which a user can interact with these data, and the prerequisites and approach for each is given below.
None
The exisiting data can be analyzed online here: https://nbviewer.jupyter.org/github/pjireland/WayneCoCourtData/blob/master/court_reports.ipynb.
- Install Jupyter using Anaconda and conda following the instructions here.
- Install PlotLy for Python.
- Clone this repository:
git clone https://github.com/pjireland/WayneCoCourtData.git
- Run the following commands from within the top level of the repository to get the latest data from DoxPop:
bash get_court_reports.sh 2018
bash get_court_reports.sh 2019
...
The last command should be the last year you'd like to include in the results.
- Run the command below to parse the court calendars you've just downloaded:
python parse_calendars.py
- Run Jupyter Notebooks from within the cloned
WayneCoCourtData
repository:
jupyter notebook
and select the court_reports.ipynb
file.
- The Jupyter Notebook can be re-run as is, or it can be modified to generate new data as needed.