diff --git a/public-dashboard-client/src/controls/CohortSelect.js b/public-dashboard-client/src/controls/CohortSelect.js index ed1efb6f..14294210 100644 --- a/public-dashboard-client/src/controls/CohortSelect.js +++ b/public-dashboard-client/src/controls/CohortSelect.js @@ -36,6 +36,12 @@ import { const SELECT_ALL_ID = "ALL"; const DropdownWrapper = styled(DropdownWrapperBase)` + /* + increasing the z index so that following menu buttons + don't cover this up when they are stacked + */ + z-index: ${(props) => props.theme.zIndex.control + 1}; + ${ControlValue} { border: 0; cursor: pointer; @@ -226,7 +232,6 @@ function NativeSelect({ buttonContents, options, selected, setSelected }) { setSelected( options.filter((opt) => currentlySelectedIds.includes(opt.id)) ); - // toggleSelected(options.find((opt) => opt.id === event.target.value)); }} value={selected.map((opt) => opt.id)} > diff --git a/public-dashboard-client/src/controls/DimensionControl.js b/public-dashboard-client/src/controls/DimensionControl.js index 0feca549..489715d5 100644 --- a/public-dashboard-client/src/controls/DimensionControl.js +++ b/public-dashboard-client/src/controls/DimensionControl.js @@ -1,11 +1,33 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + import React from "react"; import PropTypes from "prop-types"; import Dropdown from "./Dropdown"; import { DIMENSIONS_LIST } from "../constants"; -export default function DimensionControl({ onChange }) { +export default function DimensionControl({ onChange, ...passThruProps }) { return ( - + ); } diff --git a/public-dashboard-client/src/controls/Dropdown.js b/public-dashboard-client/src/controls/Dropdown.js index 8a4a0e20..220ecbaf 100644 --- a/public-dashboard-client/src/controls/Dropdown.js +++ b/public-dashboard-client/src/controls/Dropdown.js @@ -1,3 +1,20 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + import { useId } from "@reach/auto-id"; import useBreakpoint from "@w11r/use-breakpoint"; import classNames from "classnames"; @@ -43,6 +60,7 @@ const DropdownMenu = styled(DropdownMenuBase)` // in the absence of that it will be uncontrolled and expose the ID of // its selected option via a listener export default function Dropdown({ + disabled, highlighted, label, onChange, @@ -78,6 +96,7 @@ export default function Dropdown({ // selecting something other than the default (first) option // causes a highlight highlighted || currentOptionId !== options[0].id, + "Dropdown--disabled": disabled, })} > @@ -85,7 +104,7 @@ export default function Dropdown({ {!renderNativeSelect && ( - + {selectedOption.label} @@ -131,6 +150,7 @@ export default function Dropdown({ } Dropdown.propTypes = { + disabled: PropTypes.bool, highlighted: PropTypes.bool, label: PropTypes.string.isRequired, onChange: PropTypes.func.isRequired, @@ -139,6 +159,7 @@ Dropdown.propTypes = { }; Dropdown.defaultProps = { + disabled: false, highlighted: false, selectedId: undefined, }; diff --git a/public-dashboard-client/src/controls/Dropdown.test.js b/public-dashboard-client/src/controls/Dropdown.test.js index 6cf91966..17d4136a 100644 --- a/public-dashboard-client/src/controls/Dropdown.test.js +++ b/public-dashboard-client/src/controls/Dropdown.test.js @@ -76,3 +76,19 @@ test("passes selections to callback", () => { expect(mockOnChange.mock.calls[1][0]).toBe(testOptions[2].id); }); + +test("can be disabled", () => { + const { getByRole, queryByRole } = render( + + ); + const menuButton = getByRole("button", { name: testLabel }); + expect(menuButton).toBeDisabled(); + + userEvent.click(menuButton); + expect(queryByRole("menuitem")).toBeNull(); +}); diff --git a/public-dashboard-client/src/controls/index.js b/public-dashboard-client/src/controls/index.js index 52ea5969..978b7cf7 100644 --- a/public-dashboard-client/src/controls/index.js +++ b/public-dashboard-client/src/controls/index.js @@ -1,5 +1,23 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + export { default as DimensionControl } from "./DimensionControl"; export { default as MonthControl } from "./MonthControl"; export { default as LocationControl } from "./LocationControl"; export { default as Dropdown } from "./Dropdown"; +export { default as CohortSelect } from "./CohortSelect"; export { DropdownOptionType } from "./shared"; diff --git a/public-dashboard-client/src/controls/shared.js b/public-dashboard-client/src/controls/shared.js index 843d19cc..329690a9 100644 --- a/public-dashboard-client/src/controls/shared.js +++ b/public-dashboard-client/src/controls/shared.js @@ -1,3 +1,20 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + import PropTypes from "prop-types"; import styled, { css } from "styled-components"; @@ -41,6 +58,11 @@ export const DropdownWrapper = styled(ControlContainer)` color: ${(props) => props.theme.colors.bodyLight}; } } + + &.Dropdown--disabled { + opacity: 0.5; + pointer-events: none; + } `; export const DropdownMenu = styled.div` diff --git a/public-dashboard-client/src/detail-page/DetailPage.js b/public-dashboard-client/src/detail-page/DetailPage.js index 2c189348..9452c1f8 100644 --- a/public-dashboard-client/src/detail-page/DetailPage.js +++ b/public-dashboard-client/src/detail-page/DetailPage.js @@ -1,3 +1,20 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + import { ErrorBoundary } from "@sentry/react"; import useBreakpoint, { mediaQuery } from "@w11r/use-breakpoint"; import { ascending } from "d3-array"; @@ -154,6 +171,7 @@ function DetailSection({ : undefined } > + {otherControls} {showMonthControl && monthList && ( )} @@ -177,7 +195,6 @@ function DetailSection({ {showDimensionControl && ( )} - {otherControls} )} diff --git a/public-dashboard-client/src/page-sentencing/PageSentencing.js b/public-dashboard-client/src/page-sentencing/PageSentencing.js index aaa497b9..be6248c8 100644 --- a/public-dashboard-client/src/page-sentencing/PageSentencing.js +++ b/public-dashboard-client/src/page-sentencing/PageSentencing.js @@ -22,8 +22,8 @@ import Loading from "../loading"; import VizRecidivismRates from "../viz-recidivism-rates"; import VizSentencePopulation from "../viz-sentence-population"; import VizSentenceTypes from "../viz-sentence-types"; -import { PATHS, ALL_PAGES, SECTION_TITLES } from "../constants"; -import CohortSelect from "../controls/CohortSelect"; +import { PATHS, ALL_PAGES, SECTION_TITLES, DIMENSION_KEYS } from "../constants"; +import { CohortSelect, DimensionControl } from "../controls"; import { assignOrderedDatavizColor } from "../utils"; function getCohortOptions(data) { @@ -38,6 +38,7 @@ function getCohortOptions(data) { export default function PageSentencing() { const { apiData, isLoading } = useChartData("us_nd/sentencing"); + // lifted state for the recidivism section const cohortOptions = useMemo( () => @@ -46,13 +47,25 @@ export default function PageSentencing() { : getCohortOptions(apiData.recidivism_rates_by_cohort_by_year), [apiData.recidivism_rates_by_cohort_by_year, isLoading] ); - const [selectedCohorts, setSelectedCohorts] = useState(); + const [selectedCohorts, setSelectedCohorts] = useState([]); const [highlightedCohort, setHighlightedCohort] = useState(); + const [recidivismDimension, setRecidivismDimension] = useState( + DIMENSION_KEYS.total + ); if (isLoading) { return ; } + const singleCohortSelected = selectedCohorts.length === 1; + + // doing this inside the render loop rather than in an effect + // to prevent an intermediate state from flashing on the chart; + // the current value check avoids an infinite render loop + if (!singleCohortSelected && recidivismDimension !== DIMENSION_KEYS.total) { + setRecidivismDimension(DIMENSION_KEYS.total); + } + const TITLE = ALL_PAGES.get(PATHS.sentencing); const DESCRIPTION = ( <> @@ -115,14 +128,22 @@ export default function PageSentencing() { ), otherControls: ( - + <> + + + ), VizComponent: VizRecidivismRates, vizData: { + dimension: recidivismDimension, highlightedCohort, recidivismRates: apiData.recidivism_rates_by_cohort_by_year, selectedCohorts, diff --git a/public-dashboard-client/src/testUtils.js b/public-dashboard-client/src/testUtils.js index a65314d5..a2817250 100644 --- a/public-dashboard-client/src/testUtils.js +++ b/public-dashboard-client/src/testUtils.js @@ -1,12 +1,36 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import fs from "fs"; +import path from "path"; import React from "react"; import { render } from "@testing-library/react"; import { ThemeProvider } from "styled-components"; import { THEME } from "./theme"; +import { InfoPanelProvider } from "./info-panel"; // eslint-disable-next-line react/prop-types const GlobalWrapper = ({ children }) => { // include globally expected Context providers or other required wrappers here - return {children}; + return ( + + {children} + + ); }; const customRender = (ui, options) => @@ -20,3 +44,26 @@ export { customRender as render }; // provide original render method as a fallback if needed export { render as renderUnwrapped }; + +// retrieve a data fixture from spotlight-api +export function getDataFixture(filename) { + const filePath = path.resolve( + __dirname, + `../../spotlight-api/core/demo_data/${filename}` + ); + const stringContents = fs.readFileSync(filePath).toString(); + + // copypasta from spotlight-api/core/metricsApi for transforming JSONLines + if (!stringContents || stringContents.length === 0) { + return null; + } + const jsonObject = []; + const splitStrings = stringContents.split("\n"); + splitStrings.forEach((line) => { + if (line) { + jsonObject.push(JSON.parse(line)); + } + }); + + return jsonObject; +} diff --git a/public-dashboard-client/src/viz-recidivism-rates/RecidivismRatesChart.js b/public-dashboard-client/src/viz-recidivism-rates/RecidivismRatesChart.js index af800569..06de2bcb 100644 --- a/public-dashboard-client/src/viz-recidivism-rates/RecidivismRatesChart.js +++ b/public-dashboard-client/src/viz-recidivism-rates/RecidivismRatesChart.js @@ -22,10 +22,41 @@ import XYFrame from "semiotic/lib/XYFrame"; import styled from "styled-components"; import ChartWrapperBase from "../chart-wrapper"; import ColorLegend from "../color-legend"; +import { DIMENSION_DATA_KEYS } from "../constants"; import { THEME } from "../theme"; import { formatAsPct, highlightFade } from "../utils"; import XHoverController from "../x-hover-controller"; +/** + * Extracts point data for the highlighted series from chart data. + * Returns an empty array if there is no highlight or no matching series. + */ +function getPointData({ data, highlighted }) { + // we only show points as part of highlight behavior + if (!highlighted) return []; + + const highlightedSeries = data.find((d) => d.label === highlighted.label); + // this can be missing if, e.g., the series has been filtered out + if (!highlightedSeries) return []; + + return highlightedSeries.coordinates.map((point) => { + return { + ...point, + // this big ol' string ensures uniqueness for both cohort and demographic series + key: `${point.releaseCohort}-${point[DIMENSION_DATA_KEYS.race]}${ + point[DIMENSION_DATA_KEYS.age] + }${point[DIMENSION_DATA_KEYS.gender]}-${point.followupYears}`, + }; + }); +} + +function getPointColor({ data, highlighted }) { + // we only show points as part of highlight behavior + if (!highlighted) return undefined; + // this can be missing if, e.g., the series has been filtered out + return (data.find((d) => d.label === highlighted.label) || {}).color; +} + const BASE_MARK_PROPS = { transitionDuration: { fill: THEME.transition.defaultDurationMs, @@ -57,13 +88,8 @@ export default function RecidivismRatesChart({ data, highlightedCohort }) { setHighlighted(highlightedCohort); }, [highlightedCohort]); - const points = highlighted - ? (data.find((d) => d.label === highlighted.label) || {}).coordinates || [] - : []; - - const pointColor = highlighted - ? (data.find((d) => d.label === highlighted.label) || {}).color - : undefined; + const points = getPointData({ data, highlighted }); + const pointColor = getPointColor({ data, highlighted }); return ( @@ -134,10 +160,7 @@ export default function RecidivismRatesChart({ data, highlightedCohort }) { fill: pointColor, r: 5, }} - renderKey={(d) => - // if it has a label, it's a line; if not, it's a point - d.label || `${d.releaseCohort}-${d.followupYears}` - } + renderKey={(d) => d.key} title={ {CHART_TITLE} @@ -165,6 +188,7 @@ export default function RecidivismRatesChart({ data, highlightedCohort }) { RecidivismRatesChart.propTypes = { data: PropTypes.arrayOf( PropTypes.shape({ + key: PropTypes.string.isRequired, label: PropTypes.string.isRequired, coordinates: PropTypes.arrayOf( PropTypes.shape({ diff --git a/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.js b/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.js index 70ae2be2..875828b6 100644 --- a/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.js +++ b/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.js @@ -18,7 +18,16 @@ import { group } from "d3-array"; import PropTypes from "prop-types"; import React from "react"; -import { assignOrderedDatavizColor } from "../utils"; +import { + DIMENSION_DATA_KEYS, + DIMENSION_KEYS, + DIMENSION_MAPPINGS, +} from "../constants"; +import { + assignOrderedDatavizColor, + demographicsAscending, + recordIsTotalByDimension, +} from "../utils"; import RecidivismRatesChart from "./RecidivismRatesChart"; function typeCast(recidivismRecord) { @@ -37,30 +46,71 @@ function typeCast(recidivismRecord) { }; } -function prepareChartData({ data, selectedCohorts }) { - return Array.from( - group(data.map(typeCast), (d) => d.releaseCohort), - ([key, value]) => { - return { - label: key, - coordinates: value, - }; - } - ) - .map(assignOrderedDatavizColor) - .filter((record) => { - if (!selectedCohorts) { - return true; +/** + * When multiple cohorts are selected, or a single cohort and the `total` dimension, + * will return one data series per cohort. + * Otherwise (i.e., a single cohort and some dimensional breakdown is selected), + * will return one data series per demographic subgroup. + */ +function prepareChartData({ data, dimension, selectedCohorts }) { + const showDemographics = + selectedCohorts && + selectedCohorts.length === 1 && + dimension !== DIMENSION_KEYS.total; + + const preparedData = data + .filter(recordIsTotalByDimension(dimension)) + .map(typeCast); + + if (showDemographics) { + return Array.from( + group( + // filter out unselected years first so we only have to do it once + preparedData.filter(({ releaseCohort }) => + selectedCohorts.some(({ id }) => id === releaseCohort) + ), + (d) => d[DIMENSION_DATA_KEYS[dimension]] + ), + ([key, value]) => { + return { + key, + label: DIMENSION_MAPPINGS.get(dimension).get(key), + coordinates: value, + }; + } + ) + .sort((a, b) => demographicsAscending(a.key, b.key)) + .map(assignOrderedDatavizColor); + } + return ( + Array.from( + group(preparedData, (d) => d.releaseCohort), + ([key, value]) => { + return { + key, + label: key, + coordinates: value, + }; } - return selectedCohorts.some(({ id }) => id === record.label); - }); + ) + // color assignment and filtering is done last to ensure colors remain stable + // as cohorts are selected and deselected + .map(assignOrderedDatavizColor) + .filter((record) => { + if (!selectedCohorts) { + return true; + } + return selectedCohorts.some(({ id }) => id === record.label); + }) + ); } export default function VizRecidivismRates({ - data: { recidivismRates, selectedCohorts, highlightedCohort }, + data: { dimension, recidivismRates, selectedCohorts, highlightedCohort }, }) { const chartData = prepareChartData({ data: recidivismRates, + dimension, selectedCohorts, }); @@ -74,6 +124,7 @@ export default function VizRecidivismRates({ VizRecidivismRates.propTypes = { data: PropTypes.shape({ + dimension: PropTypes.string.isRequired, recidivismRates: PropTypes.arrayOf( PropTypes.shape({ followup_years: PropTypes.string.isRequired, diff --git a/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.test.js b/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.test.js new file mode 100644 index 00000000..198efe44 --- /dev/null +++ b/public-dashboard-client/src/viz-recidivism-rates/VizRecidivismRates.test.js @@ -0,0 +1,97 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2020 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import React from "react"; +import { DIMENSION_KEYS } from "../constants"; +import { render, screen, getDataFixture } from "../testUtils"; +import VizRecidivismRates from "."; + +const recidivismRatesFixture = getDataFixture( + "recidivism_rates_by_cohort_by_year.json" +); +const allCohorts = new Set( + recidivismRatesFixture.map((record) => record.release_cohort) +); +const allSelectedCohorts = [...allCohorts].map((year) => ({ + id: year, + label: year, +})); + +test("does not explode", () => { + const dimension = DIMENSION_KEYS.total; + + render( + + ); + expect(screen.getByText("Cumulative Recidivism Rate")).toBeVisible(); +}); + +/** + * There are two Semiotic charts rendered due to our hover overlay workaround; + * this convenience method applies the provided TextMatch to the main one, not the overlay + */ +function getMainByLabelText(TextMatch) { + return screen.getAllByLabelText(TextMatch)[0]; +} + +test("renders one line per cohort", () => { + const dimension = DIMENSION_KEYS.total; + + const { rerender } = render( + + ); + expect(getMainByLabelText("10 lines in a line chart")).toBeVisible(); + + rerender( + + ); + + expect(getMainByLabelText("7 lines in a line chart")).toBeVisible(); +}); + +test("renders one line per demographic subgroup", () => { + const dimension = DIMENSION_KEYS.race; + render( + + ); + + expect(getMainByLabelText("5 lines in a line chart")).toBeVisible(); +}); diff --git a/spotlight-api/core/demo_data/recidivism_rates_by_cohort_by_year.json b/spotlight-api/core/demo_data/recidivism_rates_by_cohort_by_year.json index 1c145792..8fac6feb 100644 --- a/spotlight-api/core/demo_data/recidivism_rates_by_cohort_by_year.json +++ b/spotlight-api/core/demo_data/recidivism_rates_by_cohort_by_year.json @@ -1,55 +1,715 @@ -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.3298863636703043", "recidivated_releases": "109", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.3404466490971663", "recidivated_releases": "113", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.3736413782840366", "recidivated_releases": "124", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.40968481586960626", "recidivated_releases": "136", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.43851056467503435", "recidivated_releases": "145", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.4882510817126556", "recidivated_releases": "162", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.5283826233385351", "recidivated_releases": "175", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.5749215636755637", "recidivated_releases": "190", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.6174677890409596", "recidivated_releases": "204", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.6430432273533612", "recidivated_releases": "213", "releases": "332"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.13672123699808258", "recidivated_releases": "22", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.16710609258073014", "recidivated_releases": "27", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.19426765314085911", "recidivated_releases": "31", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.20623763575976595", "recidivated_releases": "33", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.21622391602633978", "recidivated_releases": "35", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.2349959840863604", "recidivated_releases": "38", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.24407067270573057", "recidivated_releases": "40", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.25054672838632464", "recidivated_releases": "41", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.26569807571661713", "recidivated_releases": "43", "releases": "164"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.21372391712173594", "recidivated_releases": "27", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.25558090649823934", "recidivated_releases": "32", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.2919964678870638", "recidivated_releases": "37", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.30430703928695374", "recidivated_releases": "38", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.325711255799862", "recidivated_releases": "41", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.3458956220039915", "recidivated_releases": "43", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.34973150097532685", "recidivated_releases": "44", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.3709610790341351", "recidivated_releases": "47", "releases": "127"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.1939562175658699", "recidivated_releases": "34", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.2178917110633275", "recidivated_releases": "38", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.2368931062709181", "recidivated_releases": "41", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.26497081664951894", "recidivated_releases": "46", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.2777122812282168", "recidivated_releases": "48", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.30930942989799926", "recidivated_releases": "54", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.3128622439581845", "recidivated_releases": "55", "releases": "176"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.2749039871732724", "recidivated_releases": "49", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.30342376881919825", "recidivated_releases": "54", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.37179396844781776", "recidivated_releases": "66", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.412389008362768", "recidivated_releases": "74", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.4664660397988749", "recidivated_releases": "83", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.5087145800686382", "recidivated_releases": "91", "releases": "180"} -{"state_code": "US_DEMO", "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.3164941714781611", "recidivated_releases": "100", "releases": "318"} -{"state_code": "US_DEMO", "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.34142276042805075", "recidivated_releases": "108", "releases": "318"} -{"state_code": "US_DEMO", "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.37720122729547056", "recidivated_releases": "119", "releases": "318"} -{"state_code": "US_DEMO", "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.42550521522992", "recidivated_releases": "135", "releases": "318"} -{"state_code": "US_DEMO", "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.4757654227244108", "recidivated_releases": "151", "releases": "318"} -{"state_code": "US_DEMO", "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.3535354515016933", "recidivated_releases": "85", "releases": "243"} -{"state_code": "US_DEMO", "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.406504933616467", "recidivated_releases": "98", "releases": "243"} -{"state_code": "US_DEMO", "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.4724398197784235", "recidivated_releases": "114", "releases": "243"} -{"state_code": "US_DEMO", "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.538145964395835", "recidivated_releases": "130", "releases": "243"} -{"state_code": "US_DEMO", "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.23641876925447344", "recidivated_releases": "47", "releases": "200"} -{"state_code": "US_DEMO", "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.2557690544450507", "recidivated_releases": "51", "releases": "200"} -{"state_code": "US_DEMO", "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.2931796119639055", "recidivated_releases": "58", "releases": "200"} -{"state_code": "US_DEMO", "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.28022799575391744", "recidivated_releases": "83", "releases": "297"} -{"state_code": "US_DEMO", "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3273667202949975", "recidivated_releases": "97", "releases": "297"} -{"state_code": "US_DEMO", "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.14163508588973228", "recidivated_releases": "45", "releases": "322"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.15472315694153785", "recidivated_releases": "68"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.28426573172755654", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.18018087934500204", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.2498542775940517", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.19055361332708326", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.20849245193230387", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.2915432796770584", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.1572896940409308", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.23428414991227708", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.13441855437973446", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.2229969098095685", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.17053333922773994", "recidivated_releases": "47"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "1", "recidivism_rate": "0.1931273982584022", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.2305518548934301", "recidivated_releases": "101"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.3145287327299575", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.27371937983751893", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.3253857412362653", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.2619211100597044", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.299547355799761", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.38480597550131257", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.2139377055100718", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.3726981616319488", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.1697683917082467", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.3322583401283855", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.21808852251413097", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "2", "recidivism_rate": "0.2952311242183955", "recidivated_releases": "47"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.27481568501675263", "recidivated_releases": "121"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.39313878244128553", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.36382424006480313", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.34592942626462897", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.2944076241843945", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.37039467193523745", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.4310374831525233", "recidivated_releases": "63"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.24093034729343787", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.46066132952357136", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.23480046292399714", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.45046609809901517", "recidivated_releases": "54"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.24869136439558084", "recidivated_releases": "69"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "3", "recidivism_rate": "0.3181170286412642", "recidivated_releases": "50"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.3193792918425292", "recidivated_releases": "140"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.437000066356275", "recidivated_releases": "50"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.39629888351789083", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.37810603444165475", "recidivated_releases": "44"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.3616385113308875", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.4340280431051765", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.4419449149667738", "recidivated_releases": "64"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.2709811407259112", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.495215122499581", "recidivated_releases": "49"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.29315106105985755", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.5202334458433071", "recidivated_releases": "62"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.290178291554239", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "4", "recidivism_rate": "0.38453982608585535", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.34394405567044595", "recidivated_releases": "151"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.4763960230260721", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.4334196137492674", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.421201493411186", "recidivated_releases": "49"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.3992485025134245", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.475954238325523", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.4473239163869128", "recidivated_releases": "65"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.3117485460499243", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.5551350135094041", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.31880896533864345", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.6036352093515812", "recidivated_releases": "73"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.3178278332287177", "recidivated_releases": "89"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "5", "recidivism_rate": "0.4304513163862032", "recidivated_releases": "68"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.3468225508438444", "recidivated_releases": "152"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.5017166528178767", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.4529500750841841", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.44941588189668463", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.41605356779689917", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.5027581769063455", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.4547946873943561", "recidivated_releases": "66"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.3481461994487457", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.6203902398168492", "recidivated_releases": "62"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.32764883021354035", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.6243119802433722", "recidivated_releases": "75"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.33795677987981004", "recidivated_releases": "94"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "6", "recidivism_rate": "0.45023441242344864", "recidivated_releases": "72"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.3701610872936188", "recidivated_releases": "163"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.5193031386346141", "recidivated_releases": "60"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.47275950302254127", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.45957536536763044", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.4307900141721617", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.5161401597867837", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.4690662806909096", "recidivated_releases": "68"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.3695946559764942", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.6558135626572874", "recidivated_releases": "65"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.34909648296502954", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.6494253077220584", "recidivated_releases": "78"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.3504590118208814", "recidivated_releases": "98"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "7", "recidivism_rate": "0.46078013263077733", "recidivated_releases": "73"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.38672108481674616", "recidivated_releases": "170"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.5348489467678781", "recidivated_releases": "62"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.4852247252689757", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.4701809788716246", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.44020513072526934", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.543996992330777", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.4891542603390072", "recidivated_releases": "71"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.3828764321470271", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.6782189685678708", "recidivated_releases": "67"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.3654828271026633", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.6699540134041494", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.3640144274529604", "recidivated_releases": "102"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "8", "recidivism_rate": "0.4703544445706808", "recidivated_releases": "75"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.39794127127067225", "recidivated_releases": "175"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.5455753264621639", "recidivated_releases": "63"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.500155735997435", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.47666524216097234", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.455600161251264", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.5633022376608456", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.49924164757456474", "recidivated_releases": "73"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.3918666376443984", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.6892005623654863", "recidivated_releases": "68"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.36704328113624063", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.673114460991018", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.3709355314037154", "recidivated_releases": "104"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "9", "recidivism_rate": "0.48244253510047985", "recidivated_releases": "77"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 441, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.40557169931202725", "recidivated_releases": "178"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 116, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.5537755684584313", "recidivated_releases": "64"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.5014672366478367", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.4790513465574513", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 86, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.46148398353866976", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 26, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.5670790993674373", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 147, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.5061768023816637", "recidivated_releases": "74"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.40009787760878496", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 100, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.6997829443886263", "recidivated_releases": "69"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.3684882964507848", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 121, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.6826276889465852", "recidivated_releases": "82"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 281, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.37671984226911576", "recidivated_releases": "105"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 160, "release_cohort": "2009", "followup_years": "10", "recidivism_rate": "0.4898789966637696", "recidivated_releases": "78"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.32853000181042846", "recidivated_releases": "145"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.1754473892856948", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.2702730602190739", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.1655699763765434", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.17992759857246687", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.25271912872715147", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.26150229335653913", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.1907295816980814", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.2826996614294788", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.16466372712401717", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.15635696348384504", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.29362782831133005", "recidivated_releases": "83"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "1", "recidivism_rate": "0.3328137444970147", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.4811765819001177", "recidivated_releases": "213"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.2534521780771775", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.37463817012597433", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.25789474463863427", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.25316706228277175", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.4018397875546988", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.3570573048673012", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.21738006933996534", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.3611062792702695", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.2201749250132895", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.22737141993734322", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.338422595644025", "recidivated_releases": "95"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "2", "recidivism_rate": "0.45626666427543894", "recidivated_releases": "73"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.5705945384276757", "recidivated_releases": "253"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.35398806455471876", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.4530695537042013", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.3533961654965064", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.32430245366805804", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.47831190109530425", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.41452789459406847", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.2714481677671729", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.4213290399574359", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.25360460340051105", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.3078691384827722", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.46398171568994606", "recidivated_releases": "131"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "3", "recidivism_rate": "0.5837759054688773", "recidivated_releases": "93"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.5982325872860395", "recidivated_releases": "265"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.416476102862123", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.5045143141023749", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.39776608601344554", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.39303269390858775", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.5869640219395534", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.47039436937676626", "recidivated_releases": "69"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.2936089627795407", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.518493251846552", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.27333761218575586", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.369943071461763", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.5168155649382132", "recidivated_releases": "146"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "4", "recidivism_rate": "0.6787605809206916", "recidivated_releases": "109"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.666258238192844", "recidivated_releases": "295"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.43670377993106757", "recidivated_releases": "51"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.5488162916734327", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.41497588733226937", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.4304802865478109", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.6395550435468462", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.5091166576211785", "recidivated_releases": "75"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.30284021048220006", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.5363604285593335", "recidivated_releases": "54"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.29718468868384407", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.39065895819026225", "recidivated_releases": "47"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.5429828053260367", "recidivated_releases": "153"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "5", "recidivism_rate": "0.7316217016934994", "recidivated_releases": "117"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.6761908955229591", "recidivated_releases": "300"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.47336528254444127", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.5858320833731945", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.4453783337960473", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.4655178941044017", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.6881231577241139", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.5331008655183126", "recidivated_releases": "78"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.33396351355118153", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.5705708528694182", "recidivated_releases": "57"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.31692503167235764", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.416993160802032", "recidivated_releases": "50"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.5775382995103627", "recidivated_releases": "163"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "6", "recidivism_rate": "0.7838252801849588", "recidivated_releases": "126"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.7082316517408129", "recidivated_releases": "314"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.49227093719501175", "recidivated_releases": "57"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.6166321076754772", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.46713572738926795", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.47188506331850644", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.7085515481417651", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.5540591630466561", "recidivated_releases": "82"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.35200463001718774", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.5756284353001164", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.3256225285295831", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.4290862886056522", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.5996141670259338", "recidivated_releases": "169"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "7", "recidivism_rate": "0.8053312871848378", "recidivated_releases": "129"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.7338674573867263", "recidivated_releases": "325"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.5062743439183599", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.6317906354198282", "recidivated_releases": "60"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.4808651567741764", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.48180654263368083", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.7291260809592524", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.5650676622581661", "recidivated_releases": "83"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.3572316168926424", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.5797854080502723", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.3307312863442977", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.4396605144052146", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.6217165709131224", "recidivated_releases": "175"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "8", "recidivism_rate": "0.8220948369520724", "recidivated_releases": "132"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 444, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.7438531991544154", "recidivated_releases": "330"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 117, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.5094745692057792", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 96, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.6377655650021727", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.4929350529395788", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 87, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.4956391553047076", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.744668503783271", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 148, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.5777848416413399", "recidivated_releases": "85"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 38, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.36207161197419524", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 101, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.5907199734160046", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 35, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.3409969752025482", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 122, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.4472469461557793", "recidivated_releases": "54"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.6377116366597764", "recidivated_releases": "180"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 161, "release_cohort": "2010", "followup_years": "9", "recidivism_rate": "0.8340453124867694", "recidivated_releases": "134"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.23067628862648182", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.2814855085497988", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.13413585621689023", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.24449302238939108", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.18213060413322318", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.22796488826846184", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.22419741926015302", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.13287070199123258", "recidivated_releases": "2"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.30050333718406214", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.11655613222503687", "recidivated_releases": "2"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.18340895067456203", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.22470741907303743", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "1", "recidivism_rate": "0.2872582191787689", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.33636041822294627", "recidivated_releases": "82"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.4451453983902271", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.19690585858119236", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.3105718606865504", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.22657076150370145", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.2670327609927266", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.26870054799289456", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.1647475757518738", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.3428824393172389", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.16661918776040704", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.2064860129246486", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.26437597888778286", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "2", "recidivism_rate": "0.36710165761834707", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.3865270115208075", "recidivated_releases": "95"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.5001636886397268", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.21644253915033027", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.3381762354345907", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.24533156492763689", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.28473022897722605", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.33041111630606557", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.22098688455329957", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.44386132162712605", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.19130527518702728", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.25894059644135314", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.31355400245648035", "recidivated_releases": "49"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "3", "recidivism_rate": "0.4607570761616222", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.4609087596578495", "recidivated_releases": "113"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.5815353775076058", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.24273890949526772", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.4074294804002291", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.28998688549327795", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.33814057841517564", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.3670999042883415", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.26766800407273006", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.4710782356934105", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.22346742189120217", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.2631819574138329", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.3698435346094334", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "4", "recidivism_rate": "0.5189063069808502", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.475870096112616", "recidivated_releases": "117"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.6523486808493775", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.2618211347889127", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.44619487966518184", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.3099595501149747", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.3790771647009794", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.40961501890016133", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.3070949778000569", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.4998026511464744", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.2402087042057257", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.28651215636619476", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.3860085642332696", "recidivated_releases": "60"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "5", "recidivism_rate": "0.525826140144171", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.5081203766331148", "recidivated_releases": "124"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.7195322381288778", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.27115276394462035", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.4904623100130624", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.34559537487301756", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.39760788716475126", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.43165980259772796", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.31128389288556546", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.5132176911935141", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.2478879945957649", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.30002178071047747", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.41721045690686925", "recidivated_releases": "65"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "6", "recidivism_rate": "0.5445459871250241", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.5234902915707466", "recidivated_releases": "128"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.7352758755923474", "recidivated_releases": "47"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.27996198328411986", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.5224831546524794", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.3570579285317196", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.40216534320298586", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.45025738167341484", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.3301672668708734", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.5320640559735748", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.2500369618369466", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.30924574505060826", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.42069988059675567", "recidivated_releases": "66"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "7", "recidivism_rate": "0.5763387617809272", "recidivated_releases": "51"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 246, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.5430831027815324", "recidivated_releases": "133"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.7484296078652805", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 53, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.28146866101992996", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 65, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.5295018954642204", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 48, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.3626479996725708", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 15, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.412958390612391", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 82, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.45916119109617687", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 21, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.33696307902300165", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 56, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.53788153137754", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 20, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.2572143479427143", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 67, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.3215001534296167", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 157, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.4364229537023725", "recidivated_releases": "68"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 89, "release_cohort": "2011", "followup_years": "8", "recidivism_rate": "0.589196795230175", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.21745120886702662", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.24919925998583026", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.17958179385205125", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.20889895617423765", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.25900242537246765", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.19478524285979976", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.22639630953849982", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.2944840228856708", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.15381910099010365", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.2548228510983277", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.17012970587331855", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.20094613685211687", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "1", "recidivism_rate": "0.27962142864209993", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.31410143263268187", "recidivated_releases": "88"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.35171437979989906", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.20574159737943576", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.23245545121676725", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.40313690837584903", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.2786296045784195", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.32830151544302966", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.3411284699733499", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.17686153420330591", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.3964960741979738", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.20842508519471006", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.2723016337800556", "recidivated_releases": "49"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "2", "recidivism_rate": "0.31582912718779027", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.38288543842088013", "recidivated_releases": "108"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.3665902040105169", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.26050703801768876", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.2997419121789921", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.46655674830491856", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.33026048060707197", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.38790747657753666", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.4064911593897479", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.2168935769006367", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.5098740144908329", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.23323275706861413", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.3618074406179642", "recidivated_releases": "65"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "3", "recidivism_rate": "0.3384422015280911", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.4261987401506558", "recidivated_releases": "120"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.40359407063528874", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.28139277319472766", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.3519973419657628", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.5672093468482201", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.3746998122813172", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.43081342966726405", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.44386949525372604", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.2445419621286052", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.5754214497245465", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.2457215777766204", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.4348686856807539", "recidivated_releases": "78"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "4", "recidivism_rate": "0.34490679976430094", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.4689506965509697", "recidivated_releases": "132"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.45834914427050916", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.3045929791910029", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.41852319995325926", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.6146188831318061", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.4169563480674632", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.4517150431938563", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.4899439939402799", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.27362751847920186", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.6182672487431391", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.28361801197253", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.45247305348896283", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "5", "recidivism_rate": "0.3544461745915588", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.51971248789426", "recidivated_releases": "147"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.5130502080782005", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.32489626832663143", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.443829881992837", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.6818157874275662", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.4527585442243558", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.48404873112298924", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.5075474304549339", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.29495545310957905", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.6540240744845957", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.30857517279195845", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.48990778748286956", "recidivated_releases": "88"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "6", "recidivism_rate": "0.3830518271141824", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 283, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.5463439792721764", "recidivated_releases": "154"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.5365368162411651", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 61, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.3408736842279373", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 75, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.458233909326411", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 55, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.6914356770871348", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.4627547117355523", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 94, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.49613601348253356", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.5383484303518755", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 64, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.305787835760045", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.6972200923971328", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 78, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.3172923021032317", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 180, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.509561799964995", "recidivated_releases": "91"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 103, "release_cohort": "2012", "followup_years": "7", "recidivism_rate": "0.39303450259804007", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.27577650321290686", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.21101996885695878", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.23823221081205115", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.2582165741642914", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.1984060554949988", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.275369180956604", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.1883319862716896", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.30626652228270784", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.22507999200913387", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.29462853014627594", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.2166402424380799", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.22286319005574337", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "1", "recidivism_rate": "0.28393304869336045", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3192384874828808", "recidivated_releases": "93"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.22650589568333473", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.29891194368929436", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3967828806850792", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3080794031560403", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3949204100947452", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.262859208743412", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.4379543200904361", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3193691084044764", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.4652846994248844", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.29087872181239455", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3239675370767654", "recidivated_releases": "60"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "2", "recidivism_rate": "0.3893343086414239", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.3966145512517424", "recidivated_releases": "116"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.27464620972057485", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.34958843720246047", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.5020914839800488", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.3595017913313149", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.41270153398843556", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.32725349625274136", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.49732304633219726", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.3436280912901396", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.6092384625296211", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.4004864028444184", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.4266951987202952", "recidivated_releases": "79"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "3", "recidivism_rate": "0.47601493062591504", "recidivated_releases": "50"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.4642008589394314", "recidivated_releases": "136"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.3398674537093288", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.36849245461479146", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.583456154510313", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.43816166684219454", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.4473028009820661", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.39777861180132135", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.6160194244956311", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.3812410294370944", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.7473516817072878", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.4394398263241606", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.48965496678141524", "recidivated_releases": "91"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "4", "recidivism_rate": "0.5148934948635625", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.519319795206675", "recidivated_releases": "152"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.37458641115838864", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.4072862076027819", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.6191049475384869", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.489013851445882", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.4911333147503417", "recidivated_releases": "8"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.46453214447511343", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.6548162550230485", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.4075859851020657", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.8125687592704789", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.5149481058932498", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.5693476387591667", "recidivated_releases": "106"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "5", "recidivism_rate": "0.5731559016149155", "recidivated_releases": "61"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 294, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.5532594782441403", "recidivated_releases": "162"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 77, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.40534647028786386", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 64, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.45186697533406744", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 78, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.6645297678435097", "recidivated_releases": "51"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 58, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.52198823245566", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 18, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.5123821899692809", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 98, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.49433546394773176", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 25, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.706574495850481", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 67, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.4463142625259243", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 23, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.8744827719341292", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 81, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.5426490716943321", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 187, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.6087082672107708", "recidivated_releases": "113"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 107, "release_cohort": "2013", "followup_years": "6", "recidivism_rate": "0.5854704411684923", "recidivated_releases": "62"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 353, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.25609406210130736", "recidivated_releases": "90"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 93, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.2711491364902294", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 76, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.1904522937993788", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 94, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.28870527481138153", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 69, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.23417186488773897", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 21, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.1288720806575912", "recidivated_releases": "2"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 117, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.20796908096295158", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 31, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.25418990463843955", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 80, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.30443647769324317", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 28, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.19948982194182627", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 97, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.25414221873190557", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 225, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.24422176128374704", "recidivated_releases": "54"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 128, "release_cohort": "2014", "followup_years": "1", "recidivism_rate": "0.2922694972867569", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 353, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.3245749312012245", "recidivated_releases": "114"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 93, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.3623260995260197", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 76, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.23528428752429068", "recidivated_releases": "17"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 94, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.3721411153410469", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 69, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.30479963802080284", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 21, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.18286132707291677", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 117, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.2680518637225299", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 31, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.29901928015636037", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 80, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.37438234965936035", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 28, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.2758202172664783", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 97, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.34553665725806915", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 225, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.3466693204554794", "recidivated_releases": "78"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 128, "release_cohort": "2014", "followup_years": "2", "recidivism_rate": "0.40788685397686825", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 353, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.3704884876536363", "recidivated_releases": "130"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 93, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.5047399015877124", "recidivated_releases": "46"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 76, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.29669433849450566", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 94, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.43980239410058247", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 69, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.3626761880218852", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 21, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.23860421437773077", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 117, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.3702755342518667", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 31, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.3839336630680912", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 80, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.46971296647420574", "recidivated_releases": "37"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 28, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.3294634564258997", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 97, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.4043962112906952", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 225, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.41129634928006986", "recidivated_releases": "92"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 128, "release_cohort": "2014", "followup_years": "3", "recidivism_rate": "0.4469079604452117", "recidivated_releases": "57"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 353, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.4361061547980128", "recidivated_releases": "153"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 93, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.5616872020254593", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 76, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.32246675091679533", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 94, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.5265396921055334", "recidivated_releases": "49"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 69, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.43843924684033925", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 21, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.2777554554823479", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 117, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.4589812319145348", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 31, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.4294386473668095", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 80, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.5265209266302529", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 28, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.357450165622253", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 97, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.4503086141255181", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 225, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.47351066765723426", "recidivated_releases": "106"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 128, "release_cohort": "2014", "followup_years": "4", "recidivism_rate": "0.50948172083933", "recidivated_releases": "65"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 353, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.4876677382834119", "recidivated_releases": "172"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 93, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.6510127425775054", "recidivated_releases": "60"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 76, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.3559620121549413", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 94, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.5671195169003167", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 69, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.4896695072293015", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 21, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.2911412370161528", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 117, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.47925974391973125", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 31, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.4796190931499173", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 80, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.5955556509995608", "recidivated_releases": "47"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 28, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.35902381762813385", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 97, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.5198945701732638", "recidivated_releases": "50"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 225, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.514834868193504", "recidivated_releases": "115"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 128, "release_cohort": "2014", "followup_years": "5", "recidivism_rate": "0.5575857681507217", "recidivated_releases": "71"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 277, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.18591688919978389", "recidivated_releases": "51"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 73, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.269655468703289", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 60, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.1846750474711578", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.17780049554508354", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 54, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.23660929920882962", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.2389449483977079", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 92, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.29240777303417276", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 24, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.21147104581076315", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 63, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.23478332283457184", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 22, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.14508149308998097", "recidivated_releases": "3"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 76, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.24456560764135524", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 176, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.21604944467445295", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 101, "release_cohort": "2015", "followup_years": "1", "recidivism_rate": "0.3201047208048397", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 277, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.2713364319344973", "recidivated_releases": "75"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 73, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.37614318479736464", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 60, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.24022404752750634", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.21466264783028907", "recidivated_releases": "15"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 54, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.27769369468275007", "recidivated_releases": "14"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.33962054968593025", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 92, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.3585125198682104", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 24, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.2811543903745677", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 63, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.2985876200009473", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 22, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.18514915664875078", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 76, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.3168381080878098", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 176, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.29528717320656517", "recidivated_releases": "51"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 101, "release_cohort": "2015", "followup_years": "2", "recidivism_rate": "0.38722683657580903", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 277, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.30393467040023203", "recidivated_releases": "84"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 73, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.4848114314171283", "recidivated_releases": "35"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 60, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.27174598364307445", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.29413055653070513", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 54, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.3062906781394077", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.3829962083027624", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 92, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.37373532131252074", "recidivated_releases": "34"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 24, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.3299173865620453", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 63, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.3895765803300314", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 22, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.23629892983690073", "recidivated_releases": "5"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 76, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.38997840956410185", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 176, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.3348862947670234", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 101, "release_cohort": "2015", "followup_years": "3", "recidivism_rate": "0.4842804591594073", "recidivated_releases": "48"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 277, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.343162119157779", "recidivated_releases": "95"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 73, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.6038010722786906", "recidivated_releases": "44"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 60, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.3215502535351304", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 74, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.3249089061478363", "recidivated_releases": "24"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 54, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.3773064429921029", "recidivated_releases": "20"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 17, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.4379049102297151", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 92, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.47860743366966996", "recidivated_releases": "44"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 24, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.4070270934838203", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 63, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.4626892710544104", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 22, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.2854124093359975", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 76, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.4193714916766112", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 176, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.3983710064793252", "recidivated_releases": "70"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 101, "release_cohort": "2015", "followup_years": "4", "recidivism_rate": "0.5830756445494887", "recidivated_releases": "58"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 449, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.12018058712525873", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.2690227454432028", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 97, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.1723581519000455", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 119, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.18538703719185204", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 88, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.1879370058756094", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.25577378146379975", "recidivated_releases": "6"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 149, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.22196213867495487", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 39, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.1917396412819206", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 102, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.27671851445811385", "recidivated_releases": "28"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 36, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.21767414187899092", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 123, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.17288990124088352", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 286, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.20957911561902412", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 163, "release_cohort": "2016", "followup_years": "1", "recidivism_rate": "0.1834922516553881", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 449, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.16885464931952435", "recidivated_releases": "75"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.3674417781632826", "recidivated_releases": "43"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 97, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.20424993720743684", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 119, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.22276505268384506", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 88, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.24507261115225915", "recidivated_releases": "21"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.36266119520959395", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 149, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.27858106997179166", "recidivated_releases": "41"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 39, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.1942317434693651", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 102, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.306062107789416", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 36, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.3048062458106276", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 123, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.24072038118051686", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 286, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.28565634090596914", "recidivated_releases": "81"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 163, "release_cohort": "2016", "followup_years": "2", "recidivism_rate": "0.2796746497413658", "recidivated_releases": "45"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 449, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.20221756415560455", "recidivated_releases": "90"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 118, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.44484105840224253", "recidivated_releases": "52"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 97, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.23654226546764148", "recidivated_releases": "22"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 119, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.26091572422805687", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 88, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.2708830191249996", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 27, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.4379753894586494", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 149, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.35903743790238474", "recidivated_releases": "53"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 39, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.23546230193703543", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 102, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.3737065125769247", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 36, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.37767495725981837", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 123, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.3140820281613471", "recidivated_releases": "38"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 286, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.33309356613108093", "recidivated_releases": "95"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 163, "release_cohort": "2016", "followup_years": "3", "recidivism_rate": "0.3463811600337129", "recidivated_releases": "56"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 420, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.23201745045523087", "recidivated_releases": "97"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 110, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.3048399084115511", "recidivated_releases": "33"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 91, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.15344533431757498", "recidivated_releases": "13"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 111, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.26239036698643864", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 82, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.33001406636365155", "recidivated_releases": "27"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 25, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.3192560274632189", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 140, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.28311542810144474", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 36, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.2159373064170029", "recidivated_releases": "7"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 95, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.2750362211462777", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 34, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.28183241952450866", "recidivated_releases": "9"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 115, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.31364211951029053", "recidivated_releases": "36"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 267, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.27761953099188136", "recidivated_releases": "74"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 153, "release_cohort": "2017", "followup_years": "1", "recidivism_rate": "0.19440650315284774", "recidivated_releases": "29"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 420, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3368747785220438", "recidivated_releases": "141"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 110, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3839409800769034", "recidivated_releases": "42"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 91, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.20435983520469908", "recidivated_releases": "18"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 111, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3670998032729656", "recidivated_releases": "40"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 82, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.40164916387916744", "recidivated_releases": "32"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 25, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.44266700865747005", "recidivated_releases": "11"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 140, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.42213842642226784", "recidivated_releases": "59"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 36, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.2826362224488827", "recidivated_releases": "10"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 95, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3243528109389516", "recidivated_releases": "30"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 34, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.37725889822380276", "recidivated_releases": "12"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 115, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.48332839350464885", "recidivated_releases": "55"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 267, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.3946022474835968", "recidivated_releases": "105"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 153, "release_cohort": "2017", "followup_years": "2", "recidivism_rate": "0.25942847307047256", "recidivated_releases": "39"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 373, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.24568881676118148", "recidivated_releases": "91"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "<25", "race_or_ethnicity": "ALL", "releases": 98, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.24231746457723546", "recidivated_releases": "23"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "25-29", "race_or_ethnicity": "ALL", "releases": 81, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.19997184484505684", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "30-34", "race_or_ethnicity": "ALL", "releases": 99, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.2676357398845093", "recidivated_releases": "26"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "35-39", "race_or_ethnicity": "ALL", "releases": 73, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.23277885726233172", "recidivated_releases": "16"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "40<", "race_or_ethnicity": "ALL", "releases": 22, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.21443377694912613", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", "releases": 124, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.25725545639526304", "recidivated_releases": "31"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "BLACK", "releases": 32, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.12605156631173184", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "HISPANIC", "releases": 85, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.2344411062279863", "recidivated_releases": "19"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "WHITE", "releases": 30, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.14861746590445857", "recidivated_releases": "4"} +{"state_code": "US_DEMO", "gender": "ALL", "age_bucket": "ALL", "race_or_ethnicity": "OTHER", "releases": 102, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.2527083349347715", "recidivated_releases": "25"} +{"state_code": "US_DEMO", "gender": "MALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 237, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.1863736804013883", "recidivated_releases": "44"} +{"state_code": "US_DEMO", "gender": "FEMALE", "age_bucket": "ALL", "race_or_ethnicity": "ALL", "releases": 136, "release_cohort": "2018", "followup_years": "1", "recidivism_rate": "0.22152952582196606", "recidivated_releases": "30"}