import pandas as pd
from pandas.tseries import offsets
import numpy as np
import datetime as dt
import yaml
import matplotlib.pyplot as plt
from matplotlib.pyplot import cm
import matplotlib.ticker as mtick
from matplotlib.ticker import (MultipleLocator, FormatStrFormatter,
                               AutoMinorLocator, NullLocator)
import matplotlib.dates as mdates
import seaborn as sns

Use of Solitary Confinement at the Northwest Detention Center: Data Appendix

4. National ICE SRMS Data

UW Center for Human Rights, 30 November, 2020

Back to Data Appendix Index

Data analyzed:

  1. ICE Segregation Review Management System dataset of reported solitary confinement placements at NWDC released to UWCHR via FOIA on February 22, 2019 (first installment, "SRMS 1").
  2. ICE SRMS dataset of national solitary confinement placements analyzed by International Consortium of Investigative Journalists (Spencer Woodman, Karrie Kehoe, Maryam Saleh, and Hannah Rappleye, "Thousands of Immigrants Suffer In US Solitary Confinement", ICIJ, May 21 2019)
  3. ICE SRMS dataset of national solitary confinement placements analyzed by Project on Government Oversight (POGO, "ISOLATED: ICE Confines Some Detainees with Mental Illness in Solitary for Months", August 14 2019)
  4. Dataset of characteristics of ICE detention facilities obtained via FOIA by National Immigrant Justice Center (NIJC, "ICE Detention Facilities As Of November 2017")
csv_opts = {'sep': '|',
            'quotechar': '"',
            'compression': 'gzip',
            'encoding': 'utf-8'}

# Import and test asserts for UWCHR segregation log dataset (first installment)
srms1 = pd.read_csv('input/srms-1.csv.gz',
                 parse_dates=['placement_date', 'release_date'],
                 **csv_opts)

assert len(srms1[srms1['release_date'] < srms1['placement_date']]) == 0
assert len(srms1) == len(set(srms1['hashid']))
assert len(srms1) == len(set(srms1['tracking_number'])) # Tracking number redacted
assert sum(srms1['placement_date'].isnull()) == 0

# Import ICIJ segregation log dataset
icij = pd.read_csv('input/icij.csv.gz',
                   parse_dates=['placement_date', 'release_date'],
                   **csv_opts)
icij['facility'] = icij['facility'].str.strip()
icij_nwdc_str = 'WA - Northwest Detention Center'
icij_nwdc = icij['facility'] == icij_nwdc_str
icij_adelanto = icij['facility'] == 'CA - Adelanto Correctional Facility'

# Import POGO segregation log dataset
pogo = pd.read_csv('input/pogo.csv.gz',
                   parse_dates=['placement_date', 'release_date'],
                   **csv_opts)

pogo['record_id'] = range(len(pogo))
pogo = pogo.rename({'length_of_solitary_confinement_(pogo_calculation)': 'days_solitary'}, axis=1)
pogo_nwdc_str = 'TACOMA ICE PROCESSING CENTER (NORTHWEST DET CTR) (WA)'
pogo_nwdc = pogo['facility'] == pogo_nwdc_str
pogo['nwdc'] = pogo['facility'] == pogo_nwdc_str

# Import NIJC facilities dataset
facil = pd.read_csv('frozen/facil-list.csv.gz', **csv_opts)

# Import NIJC dedicated facilities dataset for list of DETLOCs
dedicated = pd.read_csv('frozen/ICEFacilityListDedicated.csv.gz', **csv_opts, header=4)
dedicated = set(dedicated['DETLOC'])

Data Quality

Previous reports by ICIJ and POGO analyzing ICE solitary confinement data have noted that the data likely under-reports true total solitary confinement placements, either due to inaccurate record-keeping or limited criteria for cases which are recorded by ICE. In correspondence related to UWCHR's FOIA litigation against ICE, counsel for DHS has confirmed that the dataset released to UWCHR is drawn from ICE's "Segregation Review Management System" (SRMS), asserting that "Only certain categories of segregation are required to be reported to ICE." A 2017 DHS Office of the Inspector General report explains, "According to SRMS guidance, ERO field office staff, including FODs, must use SRMS to report segregation placement data that falls under the ICE directive’s reporting requirements." These requirements include segregation placements affecting people with "special vulnerabilities" including mental health diagnoses; and placements exceeding 14 days during any 21-day period.[1] However, elsewhere ICE has stated "SRMS provides a centralized historical record of all segregation cases".[2]

Comparisons of SRMS data with published government reports

A comparison of SRMS data released via FOIA with other government sources noting total segregation placement counts suggests that under-reporting of segregation placements may be extensive. For example, a June 24-26, 2014 Office of Detention Oversight inspection report for NWDC states, “Documentation reflects there were 776 assignments to segregation in the past year: 515 to administrative segregation and 261 to disciplinary segregation” (page 27). However, SRMS data released to UWCHR under FOIA[3] reports 106 total segregation placements from June 2013 through June 2014. This suggests that 86% of total segregation placements at NWDC during this period were not reported via the SRMS.[4]

Similarly, data on administrative and disciplinary segregation placements nationwide released under FOIA and published by the International Consortium of Investigative Journalists reports 222 total segregation placements at Adelanto Detention Facility in Adelanto, CA from July 2013-July 2014. However, a July 8-10, 2014 Office of Detention Oversight inspection of Adelanto reports 286 administrative segregation and 328 disciplinary segregation placements (a total of 614) during the year prior to the inspection. Similar reports do not appear to be available for more recent years.

Another source of government data offering a comparison with SRMS records is a 2017 DHS Office of Inspector General report ICE Field Offices Need to Improve Compliance with Oversight Requirements for Segregation of Detainees with Mental Health Conditions, which noted issues with segregation reporting.[5] The report's methodology is described as follows:

"We [...] analyzed SRMS data from October 1, 2015, to June 30, 2016, which showed 713 segregation placements for detainees with mental health conditions — 272 disciplinary instances and 441 administrative instances. Some detainees were segregated multiple times. From the 713 segregation placements in this time period that were in SRMS, we selected and reviewed a judgmental sample of 189 instances of segregation involving 127 detainees with mental health conditions."

We can use national SRMS logs covering this time period, released by the Project on Government Oversight, to attempt to replicate this methodology:

oig_frame_start = '2015-10-01'
oig_frame_end = '2016-06-30'

oig_frame = pogo.set_index('placement_date')[oig_frame_start:oig_frame_end]

mental_illness_true = ['Yes', 'Mental Illness', 'Serious Mental Illness']

Nationwide, during the period analyzed by the DHS OIG, the POGO dataset includes 511 SRMS records indicating mental illness; fewer than reported by the DHS OIG.

These examples suggest that not only do the SRMS logs significantly under-count total segregation placements, SRMS logs released by ICE may not be complete.


National solitary confinement data

At least two reports based on national data regarding the use of solitary confinement in immigration detention have been published, by the International Consortium of Investigative Journalists (ICIJ) and the Project on Government Oversight (POGO). The data underlying these reports cover an overlapping time period also covered by the data released to UWCHR by ICE. However, due to the lack of unique identifiers for each solitary confinement placement, it is not possible to merge these datasets into a single national timeline.

ICIJ

See: "Solitary Voices: Thousands of Immigrants Suffer In US Solitary Confinement" by Spencer Woodman, Karrie Kehoe, Maryam Saleh, and Hannah Rappleye, International Consortium of Investigative Journalists, May 21, 2019.

The dataset published by ICIJ includes 272 solitary confinement placements at NWDC from April 30, 2012 to December 3, 2017, out of a total of 8488 placements nationwide.

NWDC is ranked #9 among 111 ICE facilities ranked by number of solitary placements. The average length of solitary stay is almost 51.94 days (rank #2), compared to a national average of 32.72; median solitary stay is 27.0 days at NWDC (rank #23.0), compared to a national median of 20.0.

We do not use the ICIJ dataset for detailed analysis here due to questions about the date fields in the published version of the dataset (see icij.ipynb); in addition the POGO dataset covers an overlapping time period including more recent records.

POGO

See: POGO, "ISOLATED: ICE Confines Some Detainees with Mental Illness in Solitary for Months", August 14, 2019.

The dataset published by POGO includes 149 solitary confinement placements at NWDC from January 1, 2016 to May 4, 2018, out of a total of 6558 placements nationwide.

NWDC is ranked #13 among 99 ICE facilities ranked by number of solitary placements. The average length of solitary stay is almost 69.88 days (rank #2), compared to a national average of 30.2; median solitary stay is 42.0 days at NWDC (rank #6), compared to a national median of 20.0.

The following table describes the distribution of solitary placement lengths (solitary_days) for the top 10 facilities with the longest average solitary placements. Note that some of the top facilities only have very few total placements during the period described by the POGO data.

Table 1: Top 10 immigration detention facilities by average solitary placement length, description of variable days_solitary

count mean std min 25% 50% 75% max
facility
BUTLER COUNTY JAIL (KS) 2 74 24.04 57 65.5 74 82.5 91
TACOMA ICE PROCESSING CENTER (NORTHWEST DET CTR) (WA) 139 69.88 72.58 2 22.5 42 94.5 391
UTAH COUNTY JAIL (UT) 9 67.11 57.18 3 16 68 105 172
YUBA COUNTY JAIL (CA) 58 65.43 81.5 1 18.5 32 73.5 413
NORTHERN OREGON CORRECTIONAL FACILITY (OR) 4 60.75 76.69 10 24.25 29 65.5 175
BOONE COUNTY JAIL (KY) 1 57 57 57 57 57 57
WORCESTER COUNTY JAIL (MD) 10 56 28.31 22 32.25 52 81 97
ATLANTA CITY DETENTION CENTER (GA) 35 53.94 72.97 3 16 24 60.5 352
RIO COSUMNES CORR. CENTER (CA) 40 52.65 46.26 4 19.75 33.5 66 167
SENECA COUNTY JAIL (OH) 25 52.04 115.31 1 8 22 36 587


The following figure illustrates average solitary placement lengths for the 15 dedicated ICE detention facilities with the longest average solitary placements; see NWDC-srms-2.ipynb for variations on this figure.

Figure 1: Top 15 immigration detention facilities by total number of solitary placements, average solitary placement length per quarter

During the time period covered by the POGO dataset, average solitary stays at NWDC were 28.99% longer than any other ICE dedicated detention facility.


National comparison of solitary stay length by placement categories

Average solitary stays at NWDC are longer than other facilities for both "detainee request" and "facility-initiated" placements:

Table 2: Solitary placements grouped by detainee_request, NWDC ('True') versus all other facilities, description of variable days_solitary

count mean std min 25% 50% 75% max
nwdc detainee_request
False Detainee Request 1351 50.28 64.44 0.0 15.00 30.0 60.00 790.0
Facility-Initiated 4948 23.60 27.15 0.0 8.00 19.0 29.00 466.0
True Detainee Request 58 103.33 92.27 5.0 38.25 74.0 142.75 391.0
Facility-Initiated 81 45.94 40.35 2.0 17.00 31.0 57.00 175.0

Placement reason categories longer on average at NWDC than at other detention facilities nationwide include "Facility Security Threat", "Medical", and "Protective Custody". We note that no solitary placements at NWDC are classified as "Suicide Risk Placement".

Table 3: Solitary placements grouped by placement_reason_type, NWDC ('True') versus all other facilities, description of variable days_solitary

count mean std min 25% 50% 75% max
nwdc placement_reason_type
False Disciplinary 2776 23.70 16.39 0.0 15.0 21.0 29.0 303.0
Facility Security Threat 556 45.16 45.07 0.0 19.0 31.0 55.0 330.0
Hunger Strike 225 6.40 14.89 0.0 3.0 4.0 7.0 219.0
Medical 263 10.24 14.66 0.0 1.0 5.0 13.5 112.0
Mental Illness 145 21.79 27.10 0.0 5.0 12.0 28.0 164.0
Other 49 29.65 27.99 1.0 10.0 22.0 45.0 133.0
Pending Disciplinary 365 7.26 18.87 0.0 3.0 4.0 7.0 287.0
Protective Custody 1636 49.50 62.00 0.0 16.0 30.0 60.0 790.0
Suicide Risk Placement 284 5.04 6.54 0.0 1.0 3.0 6.0 45.0
True Disciplinary 27 24.78 16.31 2.0 14.5 22.0 29.0 77.0
Facility Security Threat 38 64.53 40.84 10.0 32.0 51.0 100.0 162.0
Medical 1 20.00 NaN 20.0 20.0 20.0 20.0 20.0
Mental Illness 2 16.00 16.97 4.0 10.0 16.0 22.0 28.0
Other 2 14.00 16.97 2.0 8.0 14.0 20.0 26.0
Pending Disciplinary 4 8.00 4.32 2.0 6.5 9.0 10.5 12.0
Protective Custody 65 99.71 89.61 5.0 35.0 73.0 139.0 391.0


Facility average length of stay

Long solitary stays at NWDC cannot be separated from the broader issue of prolonged, and lengthening, stays in civil immigration detention. According to data released by ICE, the average length of stay at NWDC increased from 82 days in FY2015 to 97 days in FY2018. During the period from FY2015-2018 average stay lengths at NWDC were longer than at 93.0% of all other immigration detention centers nationwide.

According to ICE's FY2020 Budget Congressional Justification, the national average length of stay (ALOS) in immigration detention was 47.4 days in FY2018.[6] The same source also notes, "For those arrested during ICE interior enforcement operations, ALOS was 53.9 days."[7]

The following scatter plots highlight Northwest Detention Center's placement compared to other ICE dedicated detention facilities over time, illustrating that its overall average length of stay is consistently among the longest nationwide compared to facilities of similar size (based on Average Daily Population, [ADP]); average solitary placement lengths are also consistently longer than other facilities with similar overall ALOS.

Figure 2: ICE Dedicated Facilities by Average Length of Stay, Average Daily Population

Figure 3: ICE Dedicated Facilities by Average Length of Stay, Average Solitary Placement Length


Notes

[1] OIG-17-119, ICE Field Offices Need to Improve Compliance with Oversight Requirements for Segregation of Detainees with Mental Health Conditions, September 29, 2017.

[2] ICE 2017 Budget Justification, p. 54.

[3] We refer here to the first installment of SRMS data released to UWCHR in February 2019, as it more closely matches the time period cited by the ICE Office of Detention Oversight report.

[4] See the SMU-RHU data appendix for comparison of internal GEO Group records with the segregation assignments cited by the DHS Office of Detention Oversight.

[5] OIG-17-119 ICE Field Offices Need to Improve Compliance with Oversight Requirements for Segregation of Detainees with Mental Health Conditions (September 29, 2017)

[6] See: https://www.dhs.gov/sites/default/files/publications/19_0318_MGMT_CBJ-Immigration-Customs-Enforcement_0.pdf, page 4.

[7] Ibid. p. 148.