← All studies · askamerica.ai

No evidence that immigration has increased crime across US states over the last decade

Peer-reviewed literature and a 51-state, 10-year fixed-effects panel (2013-2022) both point the same way: no positive, statistically distinguishable relationship

Immigration and Crime Across US States, 2013-2022: No Evidence Immigration Worsened Crime FBI CDE violent-crime rate vs. Census ACS foreign-born population share, 50 states + DC panel US violent crime rate vs. foreign-born share, 2013-2022 0 100 200 300 400 Year Rate / Pct 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 Violent crime rate (per 100k) Foreign-born share (%, x10 for scale) Foreign-born share scaled x10 to share an axis; national crime rate shows no co-movement with the steadily rising foreign-born share. State+year fixed-effects coefficient (full sample) -11.1 per 100k p=0.31, not significant Effect of a 1pp rise in a state's foreign-born share on its violent-crime rate, holding state and year fixed (n=510, 51 states x… Same model, low-coverage state-years dropped -2.6 per 100k p=0.63, not significant Restricting to state-years with >=80% FBI agency reporting coverage (n=477). Sign stays negative; magnitude shrinks; still… Naive cross-state OLS (no fixed effects) +2.1 per 100k p=0.11, fragile Pooled correlation ignoring state/year effects is weakly positive but flips significance when single states (NJ, LA, TN, AR, HI, CT) are… FBI CDE cde_offenses and Census ACS acs_nativity, joined via geo.state_ref. 2013-2022 is the most recent 10-year window with both series loaded and not mid-backfill. Panel regressions are associational, not causal. AskAmerica · askamerica.ai
SVG

Summary

No. Across the last ten years for which both crime and population data are available (2013-2022), there is no evidence that immigration made crime worse across US states. The peer-reviewed literature is close to consensus that immigrants - including undocumented immigrants - are arrested and incarcerated at lower rates than the US-born, and a 51-state, 10-year fixed-effects panel built from FBI and Census data in this analysis finds no statistically significant relationship between a state's foreign-born population share and its violent-crime rate, with the point estimate leaning slightly negative rather than positive.

Step 1 - What the research literature says

Multiple independent research designs, spanning different data sources, time periods, and methods, converge on the same finding:

The dissenting voice in this literature is the Center for Immigration Studies (CIS), which has published estimates of comparatively high illegal-immigrant crime rates in Texas. That work has been criticized in detail by the Cato Institute and the American Immigration Council for methodological problems, including double-counting some illegal-immigrant murderers and using an illegal-immigrant population estimate inconsistent with CIS's own other estimates (which mechanically inflates the computed rate). CIS's findings have not been replicated in the peer-reviewed studies above.

Step 2 - An independent check against AskAmerica's own state-panel data

To test the literature's finding directly rather than only relay it, this analysis built a state-year panel joining FBI Crime Data Explorer violent-crime rates (crime.cde_offenses) to Census ACS foreign-born population shares (census.acs_nativity) for all 50 states plus DC, 2013-2022 - the most recent 10-year window where both series are loaded and not still mid-backfill (ACS nativity data lags about two years, so 2024-2025 do not yet exist upstream; FBI data itself is loaded through 2026).

Two-way fixed-effects panel regression (state and year effects absorbed, so the estimate reflects within-state change over time, net of any nationwide year-to-year shock): a 1 percentage-point rise in a state's foreign-born share is associated with a change of -11.1 violent crimes per 100,000 (SE 11.0, p=0.31, n=510) - negative in direction but not statistically distinguishable from zero.

Reporting-coverage check: FBI's collection went through an SRS-to-NIBRS reporting transition around 2018-2021, and average state agency reporting coverage fell as low as 26% in one state in 2021. Restricting the panel to state-years with at least 80% reporting coverage (dropping 33 of 510 state-years) shrinks the coefficient to -2.6 per 100,000 (SE 5.4, p=0.63, n=477) - still negative, still not significant. The direction of the finding is unchanged by this exclusion.

Naive (no fixed-effects) cross-state comparison, for contrast: pooling all state-years without controlling for state or year gives a weakly positive coefficient (+2.1 per 100,000, p=0.11) - illustrating exactly the confound the fixed-effects model is designed to remove (states with more immigrants differ systematically in ways, like urbanization, that also affect crime levels). Leave-one-state-out testing shows this naive estimate is fragile: dropping any single one of six states (NJ, LA, TN, AR, HI, CT) flips its statistical significance, and the coefficient itself ranges from 0.40 to 3.46 depending on which state is excluded - the opposite of a robust, broad-based pattern.

Both the properly specified (fixed-effects) estimate and the literature agree: there is no evidence of a positive relationship between immigration and crime at state grain over this decade. The fixed-effects point estimate leans negative, consistent with several of the studies above, though this analysis's own estimate is not itself statistically significant and should not be over-read as proof immigration reduces crime - only that raising the immigrant share is not associated with rising crime.

Caveats

Sources

  1. NIJ: Undocumented Immigrant Offending Rate Lower Than U.S.-Born Citizen Rate (Texas, 2012-2018) — Fetched via House Judiciary Committee-hosted PDF copy after the live NIJ page redirected; based on Michael T. Light's NIJ grant report NCJ 308552.
  2. Northwestern Now: Immigrants are significantly less likely to commit crimes than the U.S.-born (covering NBER w31440, Abramitzky et al.)
  3. Nature: Undocumented migration does not raise crime rates, huge study finds (covering Kubrin et al., Journal of Urban Affairs 2026)
  4. American Immigration Council: Debunking the Myth of Immigrants and Crime
  5. Cato Institute: The Center for Immigration Studies Produces Improbably High Estimates of Illegal Immigrant Criminality in Texas
  6. American Immigration Council: CIS Report Attempts to Erase 100 Years of Research
  7. AskAmerica state-year panel: FBI violent-crime rate vs. foreign-born share, two-way fixed effects, 2013-2022
    Show SQL
    WITH crime_annual AS (SELECT state_abbr, "year", SUM(offense_rate) AS violent_rate FROM crime.cde_offenses WHERE offense_code = 'violent-crime' AND state_abbr <> 'national' AND "year" BETWEEN '2013' AND '2022' GROUP BY state_abbr, "year"), nativity AS (SELECT sr.state_abbr AS st_abbr, n."year" AS yr, (CAST(n.foreign_born AS DOUBLE) / NULLIF(n.total_population,0)) * 100 AS foreign_born_pct FROM census.acs_nativity n JOIN geo.state_ref sr ON sr.state_fips = n.state WHERE n.geography = 'state' AND n."year" BETWEEN '2013' AND '2022') SELECT c.state_abbr AS state, CAST(c."year" AS INTEGER) AS yr_num, c.violent_rate, nv.foreign_born_pct FROM crime_annual c JOIN nativity nv ON nv.st_abbr = c.state_abbr AND nv.yr = c."year"
    Show tool call
    panel_fixed_effects(outcome="violent_rate", predictors=["foreign_born_pct"], entity_col="state", time_col="yr_num")
  8. AskAmerica leave-one-state-out sensitivity check on the naive (no fixed-effects) OLS specification
    Show tool call
    sensitivity_analysis(outcome="violent_rate", predictors=["foreign_born_pct"], group_col="state")
  9. FBI Crime Data Explorer via AskAmerica crime.cde_offenses — Violent-crime offense rate by state and month, 2013-2022 subset queried.
  10. Census ACS via AskAmerica census.acs_nativity — Foreign-born population share by state, table B05001, 2013-2022 subset queried.