Skip to content

invinst/documentAnalysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Document Analysis

First: Topic Models On Documents and Community Information.

This code looks through the narratives of the documents received in the Green lawsuit and performs preliminary topic modeling. It also takes the list of generated communities from the "Watts project" and adds additional information for further analysis.

Preliminary findings indicate that there are hidden themes in complaints that are not reflected in the categorization. This analysis is not meant to be final or indicative in any way. We initially used a Latent Dirichlet Allocation Topic Model for this analysis with a k-value of 15, then moved over to a structural topic model with 20 topics.

Topic analysis can help us refine the categorization of known complaints. As you can find in some of the presentations, there are major discrepancies with the content of a complaint and the category that it is filed under. There are two main goals for topic analysis. First, can we create a better complaint classification system. That seems doable, but requires some tweaking of the topic modeling. Second, can we identify hidden themes and topics. We chose to flag words related to sexual violence in an attempt to learn more about this, and it does appear that there are hidden themes; however, it is unclear whether topic modeling can help us fix that problem.

This is a promising realm of analysis and with some minor adjustments to the model, can offer great and vast insights.

Crews FAQs:

How does this analyis define "crew"?

This analyis defines a crew as a "tight-knit community of officers involved in high levels of egregious misconduct and criminal activity." Specifically, a group of officers is a crew if it exhibits four characteristics: (1) Frequency: the officers display high levels of co-offending misconduct; (2) Exclusivity: the officers are involved in recurrent co-offending misconduct within the group, as opposed to co-offending misconduct with external officers; (3) Severity: the officers are engaged in similar types of misconduct activities (i.e. excessive force, illegal searches, etc.); and (4) Cohesion: the group exhibits well-defined membership. It's assumed that there are various types of crews ranging in severity, duration, structure, etc.

Is every detected community a crew?

The short answer is no. It's conceivable that communities exist for a wide variety of reasons. Given that policing is largely group work, natural communities will exist. Additionally, if an officer has received 100 complaints, some with other individuals, they may appear to be part of a community without being part of a crew. As such, it's essential to be able to differentiate crews from communities.

How were crews generated?

Community detection algorithms were run on top of a misconduct network to provide the list of 2,334 communities. From there, an index was created using five variables: Within Community Complaints, Average Weighted Degree, Internal Complaints Per Person, Jaccard Index with Label Propagation, and Percent Flagged. Percent Flagged corresponds to the results of clustering algorithms on officers that identified "types" of officers more likely to be in crews. The higher these five values are, the higher the chance that a community is a "crew."

Once we have a list of officers in a detected crew, what do we look for?

This is not my particular area of expertise, but it seems that severe allegations, victimization patterns (location, type of victim), consistent community behavior, etc. would all be contributing factors. Unfortunately, much of this information is unknown as a result of deliberate and systemic obstacles.

Files to know in data/output:

  • 'BigCommunityDataset.csv' - This is the dataset indexed by community with all the information needed for further analysis.
  • 'documentAssignments.csv' - These are the topic probabilities for each document in the narratives file.
  • 'officerCommAssignments.csv' - These are the community assignments for each officer.
  • 'topic_interpretations.xlsx' - These are manually generated topic intepretations
  • 'Topic_List' - These are the top 20 words for the 15 topics. This was used to generate manual topic labels.

Presentations contain information on the methodology employed as well as some helpful graphics.

Below is a list of the variables in 'BigCommunityDataset.csv' and an explanation of how they were calculated:

  • Community_ID: The numeric code that identifies a community. Officers that share a community ID are in the same community.
  • Count: Number of officers in community.
  • Degree: Average degree of officers in community in social network of officers. Note: some edges were removed from network.
  • Weighted.Degree: Average weighted degree of officers in community in social network of officers. See above note
  • yearsOnForce: Average number of years on force of officers in community.
  • current_age: Average age of officers in community.
  • percentBlack: Percent of officers in community who are Black.
  • percentWhite: Percent of officers in community who are White.
  • percentMale: Percent of officers in community who are male.
  • percentFemale: Percent of officers in community who are female.
  • WithinCommunityComplaints: Number of complaints that listed more than one officer in the community.
  • internalComplaintsPerPerson: Within Community Complaints divided by Count
  • jaccardLabProp: Jaccard index for Louvain community detection and Label Propagation community detection. 1 is best.
  • percentFlagged: Percent of officers in community who were of types 4 and 6. See Watts paper for further explanation.
  • Index_Value: "Crew Probability" 1 indicates high chance of crew, 0 indicates little to no chance.
  • DetectedCrew: Was this community identified as a crew?
  • currentlyActive: How many officers in this crew are currently active
  • NumberOfDocs2OrMoreListed: How many documents are there that list 2 or more officers
  • AvgNumberOfDocs: NumberOfDocs2OrMoreListed divided by Count
  • NumberOfDocRequests: Number of Document Requests by CPDP users.
  • link: The pinboard link. Contains UIDs in this.
  • numberOfDistinctSettlements: Number of settlements listing at least one officer in the community.
  • TotalPayouts: Sum of the settlement amounts for each settlement listing at least one officer in the community
  • UseOfForce_2orMore: Number of use of force complaints that list 2 or more officers.
  • IllegalSearch_2orMore: Number of illegal search complaints that list 2 or more officers.
  • FalseArrest_2orMore: Number of false arrest complaints that list 2 or more officers.
  • OpsPersonnel_2orMore: Number of operations and personnel violation complaints that list 2 or more officers.
  • CriminalMisconduct_2orMore: Number of criminal misconduct complaints that list 2 or more officers.
  • VerbalAbuse_2orMore: Number of verbal abuse complaints that list 2 or more officers.
  • NumberOfSustained_2orMore: Number of sustained complaints that list 2 or more officers.
  • NumberOfNotSustained_2orMore: Number of not sustained complaints that list 2 or more officers.
  • NumberOfNoAffidavit_2orMore: Number of no affidavit complaints that list 2 or more officers.
  • NumberOfExonerated_2orMore: Number of exonerated complaints that list 2 or more officers.
  • NumberOfUnfounded_2orMore: Number of unfounded complaints that list 2 or more officers.
  • noActionTaken_2orMore: Number of complaints that list 2 or more officers resulting in no action.
  • PenaltyNotServed_2orMore: Number of complaints that list 2 or more officers resulting in no penalty served.
  • Resigned_2orMore: Number of complaints that list 2 or more officers resulting in resignation.
  • Reprimand_2orMore: Number of complaints that list 2 or more officers resulting in a reprimand.
  • AdministrativeTermination_2orMore: Number of complaints that list 2 or more officers resulting in administrative termination.
  • Reinstated_2orMore: Number of complaints that list 2 or more officers resulting in reinstatement.
  • Suspension_2orMore: Number of complaints that list 2 or more officers resulting in suspension.
  • blackComplainants_2orMore: Number of Black complainants on complaints that list 2 or more officers.
  • whiteComplainants_2orMore: Number of White complainants on complaints that list 2 or more officers.
  • hispanicComplainants_2orMore: Number of Hispanic complainants on complaints that list 2 or more officers.
  • maleComplainants_2orMore: Number of male complainants on complaints that list 2 or more officers.
  • femaleComplainants_2orMore: Number of female complainants on complaints that list 2 or more officers.
  • totalTRRs: Sum of TRRs of each officer. If two officers in a community are involved in the same TRR, it shows up as 2. This is true for all TRR variables.
  • totalShotUnarmedVic: Total number of TRRs indicating that officers shot and hit an unarmed victim.
  • totalTRRsWithFirearm: Total number of TRRs indicating that officers discharged a firearm.
  • totalTRRsWithTasers: Total number of TRRs indicating that a taser was used.
  • totalIncidentsShotFirearmOrTaserFirst: Total number of TRRs indicaating that the officer fired a taser/firearm first.
  • totalBlackTRRVics: Total number of TRRs with Black victims.
  • totalWhiteTRRVics: Total number of TRRs with White victims.
  • totalHispanicTRRVics: Total number of TRRs with Hispanic victims.
  • totalMaleTRRVics: Total number of TRRs with male victims.
  • totalFemaleTRRVics: Total number of TRRs with female victims.
  • averageTRRVicAge: Average age of TRR victims
  • AvgTRRsPerOfficer: totalTRRs divided by Count
  • AvgTRRsWithFirearmPerOfficer: totalTRRsWithFirearm divided by Count
  • AvgTRRsWithTaserPerOfficer: totalTRRsWithTasers divided by Count
  • ToRead_ordered: An ordered list of complaints to read based on topic analysis of the complaints with narrative information.

If you have any questions, feel free to email me, Akshay Jain, at akshayjain2020@u.northwestern.edu or akshayjain.nu@gmail.com

About

Topic Models On Documents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages