-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add number of convictions filed to analysis #144
Comments
Hi all, I think we should add this as an additional question - of the cases filed, how many result in convictions? From there, we will compare the number of felony convictions in our data with the number of felony cases filed. If Geoff can find the number of conviction cases we have for the relevant years, I will write up a paragraph and send it out for review. In this paragraph, I'll also plan to note caveats, for example that some of our cases started before 2005 or 2006. Let me know of any other things I should be sure to include in the analysis. Thoughts? |
I know that cases can have their charge change; can they change from felony to misdemeanor or the reverse? If so, that would impact what the ratio of convictions to filed means. |
Absolutely. In fact many low level felonies get pled down to a misdemeanor over time. Tracy On Nov 27, 2014, at 10:45 AM, Brian Everett Peterson [email protected] wrote:
— Tracy Siska | Executive Director [email protected] | www.chicagojustice.org |
@GovInTrenches, just to be clear, from the links you provided, we only have felony cases filed for the years that match our data, right? The links that provided numbers of misdemeanor cases filed seem to not cover 2005-2009. |
I added three worksheets to the Tarbell spreadsheet.
I used the initial_date field of our records to assign a case to a particular year. There are a couple of weird things:
|
@shua123 - can you verify this for us? Christopher Whitaker (Sent from iPhone)
|
@ghing @GovInTrenches Yeah, it looks like there is just felony cases there for 2005-2009, not misdemeanors. |
Thanks, all. I'll work on putting a paragraph together about this tomorrow, and will plan to reach out to Tracy for any help needed with analysis. |
Question: Of all the felony cases filed, how many result in a conviction? Answer: According to data from the Circuit Court of Cook County, 173, 204 felony cases were filed between 2005 and 2009. The majority of these were the lowest-level felonies – class 4. The total number of cases filed as felonies that remained felonies between 2005 and 2009 were 144, 835. This number may be smaller than the original count of felony cases because some felony cases originated in 2005-2009, such as that for murder, may take several years to work through the system. In additional, plea bargains on cases in Cook County Court have a significant effect on the final convictions. Some of the charges filed as high-level felonies were downgraded to lower-level felonies in the data. In addition, some felony cases may be pushed up to misdemeanor cases. [Graphic – how do the cases filed compare to how many originated and are felonies, compared to those that started as misdemeanors. Maybe we can choose a year to look at, or use a table to show all the numbers] Outstanding questions:
|
Here's a revision: Question: Of all the felony cases filed, how many result in a conviction? Answer: A separate data set, from the Circuit Court of Cook County, shows that 173,204 felony cases were filed between 2005 and 2009. The majority of these were the lowest-level felonies - class 4. The data set requested by CJP shows that, during the same time period, 145,487 cases that were filed as felonies resulted in a conviction, with 144,835 of those cases resulting in a felony conviction. This number is smaller than the number of cases filed not only because some cases did not result in conviction but because the data reflecting cases that resulted in a conviction may not contain records for cases that were filed in 2005-2009 but had not have been completed when the data was requested. In additional, plea bargains on cases in Cook County Court have a significant effect on the final convictions. Some of the cases in the data were filed with charges for high-level felonies and later amended to lower-level felonies or misdemeanors. |
@Yana715 to answer your second question, I added a worksheet to the Tarbell spreadsheet called I also made a percentage version, in the sheet |
Populate the final_statute, final_chrgdesc, final_chrgtype, final_chrgclass and IUCR-related fields after all the other fields have been loaded. This fixes a bug that was caused by the field names are returned alphabetically by Postgres and thus always setting the value to the alphabetically first item instead of the amended version, if it exists. Add a management command, ``export_cases_by_class`` to export a table of the number of cases for each felony class. This mirrors the table at https://performance.cookcountyil.gov/Public-Safety/Number-Of-Felony-Cases-Filed-By-Felony-Class/kcfs-dufb Add another management command, ``export_cases_class_change`` to export a table of how cases class change between the initial and amended classes. The heavy lifting of these management commands is done by queryset methods. Addresses sc3/cook-convictions#144
@GovInTrenches writes:
The text was updated successfully, but these errors were encountered: