Skip to content

Commit

Permalink
Merge a6669f7 into fa3efe0
Browse files Browse the repository at this point in the history
  • Loading branch information
macfarlandian committed Nov 10, 2020
2 parents fa3efe0 + a6669f7 commit 13274d3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
21 changes: 21 additions & 0 deletions public-dashboard-client/src/methodology-modal/MethodologyModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,27 @@ const CONTENTS_BY_PAGE = {
with an end to the period of incarceration, such as transfers between
facilities, are not shown here.
</MethodologyDescription>
<SectionTitle>{SECTION_TITLES[PATHS.prison].recidivism}</SectionTitle>
<MethodologyDescription>
This chart shows reincarceration recidivism rates, which is the
proportion of individuals released from a ND DOCR facility that return
to a ND DOCR facility at some point in the future. The releases are
grouped by the calendar year in which the release occurred, and the
rates are calculated as the percentage of the people released that have
returned to incarceration after each year since the release. Individuals
are included in the release cohort if they were released for serving
their sentence or were conditionally released onto supervision.
Admissions to incarceration for new court commitments or due to
revocations of supervision are counted as instances of reincarceration
recidivism.
</MethodologyDescription>
<SectionTitle>
{SECTION_TITLES[PATHS.prison].recidivismSingleFollowup}
</SectionTitle>
<MethodologyDescription>
This chart shows the reincarceration recidivism rate for a set number
years since the release, for the 10 most recent release cohorts.
</MethodologyDescription>
</>
),
[PATHS.parole]: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
DIMENSION_KEYS,
DIMENSION_MAPPINGS,
} from "../constants";
import Disclaimer from "../disclaimer";
import {
assignOrderedDatavizColor,
demographicsAscending,
Expand Down Expand Up @@ -97,10 +98,13 @@ export default function VizRecidivismRates({
});

return (
<RecidivismRatesChart
data={chartData}
highlightedCohort={highlightedCohort}
/>
<>
<RecidivismRatesChart
data={chartData}
highlightedCohort={highlightedCohort}
/>
<Disclaimer type="small-data" />
</>
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import {
DIMENSION_MAPPINGS,
TOTAL_KEY,
} from "../constants";
import Disclaimer from "../disclaimer";
import { THEME } from "../theme";
import { demographicsAscending, recordIsTotalByDimension } from "../utils";

Expand Down Expand Up @@ -105,6 +106,7 @@ export default function VizRecidivismSingleFollowup({ data, dimension }) {
setSelectedChartTitle={setSelectedChartTitle}
width={width || 0}
/>
<Disclaimer type="small-data" />
</Wrapper>
)}
</Measure>
Expand Down

0 comments on commit 13274d3

Please sign in to comment.