Aging of Defendants in Jail
This dataset is used to create a histogram displaying the aging of defendants in jail, for today's defendants in jail on superior court criminal cases. The starting dataset is https://sharefulton.fultoncountyga.gov/Government/Superior-Court-Defendants-in-Jail/raqb-js7j , and is aggregated, filtered, and manipulated into this form using the R programming language.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"sharefulton-fultoncountyga-gov/aging-of-defendants-in-jail-nday-3c8i\".\"aging_of_defendants_in_jail\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.