← All studies · askamerica.ai

Payer mix is one of the strongest, most consistently documented predictors of hospital closure risk

Literature synthesis (Sheps Center, BMC Health Serv Res 2026, Health Affairs, Public Citizen) plus an AskAmerica cross-check of CMS quality ratings against county uninsured rates

How payer mix tracks hospital closure risk Rural closures 2011-2022 (BMC study); Medicaid-expansion effect (Health Affairs); AskAmerica cross-check of quality rating vs. uninsured rate Rural hospitals that closed, 2011-2022 5.2% 139 of 2,683 hospitals studied Lower closure odds in Medicaid-expansion states ~84% vs. non-expansion states (Health Affairs) CMS hospital quality rating vs. county uninsured rate (quintiles, n=3,130 r… 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5 County uninsured rate (2023, SAHIE) Avg star rating 2.1-5.9% 5.9-7.4% 7.4-9.4% 9.4-12.4% 12.4-31.5% SQL filter applied: h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL -- this excluded every hospital CMS… Rural hospitals in Sheps Center's financial-risk pool 338+ negative margins and/or high-Medicaid payer mix SQL filter overall_rating <> 'Not Available' AND overall_rating IS NOT NULL excluded every CMS-unrated hospital from the star-rating chart above -- these tend to be smaller/rural facilities, exactly the group the literature flags as highest closure risk, so this check likely understates the true relationship. CMS star rating measures clinical quality, not financial condition, so it is at best a weak proxy for closure risk -- the… AskAmerica · askamerica.ai
SVG

Summary

Payer mix tracks hospital closure risk closely and is one of the most consistently identified drivers in the research literature -- more so than almost any other single hospital characteristic besides raw financial performance (which payer mix itself feeds). Hospitals that depend heavily on Medicaid, Medicare, and uncompensated/self-pay care -- and have thin or negative operating margins as a result -- close at multiples of the rate of hospitals with a more commercially-insured patient base. The clearest natural experiment is Medicaid expansion: hospitals in expansion states were found to be roughly 62-84% less likely to close than otherwise-similar hospitals in non-expansion states, entirely through the payer-mix/uncompensated-care channel. A 2026 machine-learning study of 2,683 rural hospitals (139 closures, 2011-2022) confirms payer-mix-adjacent variables -- Medicaid expansion timing, uninsured share, financial margin volatility -- rank among the top predictors, alongside low patient volume.

An AskAmerica cross-check using CMS hospital quality ratings against county-level uninsured rates found only a weak, not-quite-significant association (p=0.069) -- expected, because CMS star ratings measure clinical quality, not financial distress, and are therefore a poor proxy for closure risk. The load-bearing evidence here is the published financial-statement and closure-registry literature, not this warehouse correlation, which is included only as a triangulation check.

What the literature shows directly

AskAmerica cross-check (triangulation, not the primary evidence)

The AskAmerica corpus has no hospital-closure event table, so a direct replication of the closure studies above was not possible here. As a partial, weaker check, CMS overall star ratings (health.cms_hospital_quality via health.hospital_with_geography) were joined to county-level uninsured rates (census.sahie_insurance, 2023, county grain) via county FIPS. The SQL filter used was h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL (and, in the metro/nonmetro breakdown, the unaliased equivalent overall_rating <> 'Not Available' AND overall_rating IS NOT NULL) -- this excluded every CMS-unrated hospital, a group disproportionately made up of small, critical-access, psychiatric, or newly-opened facilities. Excluding them left 3,130 rated facilities in the chart above. No with/without comparison on the star-rating outcome itself is possible for the excluded group (they carry no rating to average), but the direction of the bias is worth stating explicitly: the excluded, unrated hospitals are exactly the small/rural facilities the literature flags as highest closure risk, so if anything this warehouse check understates the true payer-mix/risk relationship by dropping the most exposed facilities from the sample entirely.

Binning counties into uninsured-rate quintiles and testing the trend in average hospital star rating (among the 3,130 rated facilities) gave a slope of -0.073 stars per quintile step (p=0.069, not significant at 0.05, and not strictly monotonic). Nonmetro hospitals average a slightly lower star rating (3.03 vs. 3.28 for metro) and sit in slightly higher-uninsured counties (9.8% vs. 9.2%) on average (n=905 nonmetro / 2,231 metro rated facilities). These numbers are directionally consistent with the literature (worse outcomes and higher uninsured exposure co-locate) but far too weak, on their own, to establish the relationship -- because star rating is a clinical-quality measure, not a financial-solvency measure, and is therefore several steps removed from the actual closure mechanism (margin, liquidity, uncompensated care as a share of revenue). This gap is itself informative: it explains why the load-bearing evidence for this question has to come from studies that directly measured hospital financial statements and payer-mix composition, which this warehouse does not carry at hospital grain.

Bottom line and confounds not held fixed

Payer mix -- specifically the share of Medicaid, Medicare, and uninsured/self-pay patients relative to better-reimbursing commercial insurance -- is one of the most robust predictors of hospital closure identified across multiple independent research designs (retrospective financial-statement studies, ML classifiers, and the Medicaid-expansion quasi-experiment). The size of the effect in the expansion literature (a 60-85% relative reduction in closure odds) is large by the standards of health-policy research. What none of these studies (or this check) isolate is payer mix in complete isolation from hospital size, rurality, ownership, and local market competition -- all of which are correlated with payer mix and also independently affect closure risk, so the reported effect sizes are associations/quasi-experimental estimates, not a pure payer-mix-only causal effect net of every other factor.

Every query behind this report

9 warehouse calls ran in this session, in order. Each is reproducible against the same snapshot.

query — 5 rows — 13616 ms
SELECT year, COUNT(*) FROM census.sahie_insurance WHERE geography='county' GROUP BY year ORDER BY year DESC LIMIT 5
query — 6 rows — 44377 ms
SELECT DISTINCT overall_rating FROM health.hospital_with_geography LIMIT 20
query — 5000 rows — 22244 ms
SELECT h.metro_nonmetro, CAST(h.overall_rating AS DOUBLE) rating, s.uninsured_rate
FROM health.hospital_with_geography h
JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023'
WHERE h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL
quantile_binning_test — 21631 ms
SELECT CAST(h.overall_rating AS DOUBLE) rating, s.uninsured_rate
FROM health.hospital_with_geography h
JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023'
WHERE h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL
query — 2 rows — 22315 ms
SELECT h.metro_nonmetro, COUNT(*) n, AVG(CAST(h.overall_rating AS DOUBLE)) avg_rating, AVG(s.uninsured_rate) avg_uninsured
FROM health.hospital_with_geography h
JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023'
WHERE h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL
GROUP BY h.metro_nonmetro
query — 1 rows — 1418 ms
SELECT type, COUNT(*) FROM census.sahie_insurance WHERE geography='county' AND "year"='2023' GROUP BY type
query — 1 rows — 22250 ms
SELECT COUNT(*) total, COUNT(DISTINCT facility_id) distinct_fac FROM health.hospital_with_geography WHERE overall_rating <> 'Not Available' AND overall_rating IS NOT NULL
quantile_binning_test — 24560 ms
SELECT DISTINCT h.facility_id, CAST(h.overall_rating AS DOUBLE) rating, s.uninsured_rate
FROM health.hospital_with_geography h
JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023'
WHERE h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL
query — 2 rows — 23844 ms
SELECT h.metro_nonmetro, COUNT(DISTINCT h.facility_id) n, AVG(CAST(h.overall_rating AS DOUBLE)) avg_rating, AVG(s.uninsured_rate) avg_uninsured
FROM (SELECT DISTINCT facility_id, county_fips, metro_nonmetro, overall_rating FROM health.hospital_with_geography WHERE overall_rating <> 'Not Available' AND overall_rating IS NOT NULL) h
JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023'
GROUP BY h.metro_nonmetro

Sources

  1. Why are rural hospitals closing in the U.S.? Predictors identified using explainable machine learning (BMC Health Serv Res, 2026)
  2. Recent Rural Hospital Closures and Service Disruptions in the United States: A Rapid Systematic Review (MDPI, 2025)
  3. Sheps Center (UNC) Rural Hospital Closures tracker
  4. Public Citizen, "The Big Ugly Threat to Safety Net Hospitals" (2025)
  5. In states that didn't expand Medicaid, hospital closures have spiked (STAT News)
  6. Health Affairs study on Medicaid expansion and hospital closures (AJMC summary)
  7. Medicaid expansion reduced uncompensated care costs, may have prevented hospital closures (WashU)
  8. AskAmerica: CMS hospital quality ratings by facility, joined to county geography — health.hospital_with_geography, health.cms_hospital_quality
    Show SQL
    SELECT DISTINCT h.facility_id, CAST(h.overall_rating AS DOUBLE) rating, s.uninsured_rate FROM health.hospital_with_geography h JOIN census.sahie_insurance s ON h.county_fips = s.county_fips AND s.geography='county' AND s."year"='2023' WHERE h.overall_rating <> 'Not Available' AND h.overall_rating IS NOT NULL
  9. AskAmerica: Census SAHIE county uninsured rates, 2023 — census.sahie_insurance