Skip to main content
  1. ~/archivo # Case Studies/
  2. Florida Four-Year Institutions/

Findings

19 mins

The exploration phase gave the shape; the findings phase reaches for window functions and CTEs to surface what changed.

At a Glance
#

The orientation queries in phase 03 covered single-dimension questions: how many institutions per sector, what they cost, who completed, what programs they offer. The findings phase asks the intersection questions, the ones a single GROUP BY cannot answer. Five threads follow, each pulled with window functions or common table expressions, each rooted in a question phase 03 raised but did not answer.

The framing is deliberately narrow. This case study is not a comprehensive analysis of Florida’s four-year higher-education sector. It is a demonstration of how SQL on a verified dataset can surface specific structural patterns: the cost-per-completer ranking inside each sector, the fraction of for-profit enrollment that closure absorbed, what survivors did with the displaced students, where Florida’s HBCUs sit relative to their sector peers, and where the highest reported earnings cluster. Each thread ends with a “what this doesn’t tell you” boundary, because every analytical claim has limits worth naming.

Cost Per Completer Across The Sectors
#

The exploration phase showed that public, private nonprofit, and for-profit institutions report different average completion rates and different average net prices. The ratio of those two numbers is the more useful metric: cost per completer, defined as average net price divided by average completion rate. Lower ratios mean more completion per dollar.

\[\text{cost per completer} = \dfrac{\overline{\text{net price}}}{\overline{c_{150,4}}}\]

where \(\overline{\text{net price}}\) is the institution’s average annual net price across all years with reported data, and \(\overline{c_{150,4}}\) is the institution’s average six-year completion rate (the College Scorecard’s c150_4 metric) across all years with reported data. The bar notation indicates a mean across the available year-rows; institutions reporting fewer than five years of data are excluded by the query’s HAVING clause so the averages are not built from a single partial year.

-- Cost-per-completer ranking within each sector, computed as average
-- net price divided by average completion rate. The CTE first builds
-- per-institution averages across years where both metrics are non-null;
-- HAVING COUNT >= 5 requires at least 5 years of data so the average is
-- not built from a single partial year. COALESCE on npt4_pub, npt4_priv,
-- npt4_other handles the schema reality that net price is reported in
-- different columns by sector. The outer query applies RANK() OVER
-- PARTITION BY sector so each sector has its own ranked list.
WITH institution_summary AS (
    SELECT
        i.unitid,
        i.instnm,
        CASE i.sector
            WHEN 'public'            THEN 'Public'
            WHEN 'private_nonprofit' THEN 'Private Nonprofit'
            WHEN 'for_profit'        THEN 'For-Profit'
        END AS sector_display,
        AVG(COALESCE(am.npt4_pub, am.npt4_priv, am.npt4_other)) AS avg_net_price,
        AVG(am.c150_4) AS avg_completion
    FROM institutions       i
    JOIN annual_metrics     am USING (unitid)
    WHERE am.c150_4 IS NOT NULL
      AND COALESCE(am.npt4_pub, am.npt4_priv, am.npt4_other) IS NOT NULL
    GROUP BY i.unitid, i.instnm, i.sector
    HAVING COUNT(am.c150_4) >= 5
)
SELECT
    instnm AS "Institution",
    sector_display AS "Sector",
    CAST(ROUND(avg_net_price, 0) AS INTEGER) AS "Avg Net Price",
    ROUND(avg_completion * 100, 1) AS "Avg Completion %",
    CAST(ROUND(avg_net_price / NULLIF(avg_completion, 0), 0) AS INTEGER) AS "Cost / Completer",
    RANK() OVER (PARTITION BY sector_display ORDER BY avg_net_price / NULLIF(avg_completion, 0) ASC) AS "Sector Rank"
FROM institution_summary
ORDER BY sector_display, avg_net_price / NULLIF(avg_completion, 0) ASC
LIMIT 30;

Run this query in Datasette Lite

Result (top 30 by lowest cost-per-completer, ranked within each sector):

InstitutionSectorAvg Net PriceAvg Completion %Cost / CompleterSector Rank
San Ignacio UniversityFor-Profit$8,79574.6$11,7891
Atlantis UniversityFor-Profit$18,30678.0$23,4722
Acupuncture and Massage CollegeFor-Profit$25,84073.6$35,1293
Florida National University-Main CampusFor-Profit$20,93550.6$41,3694
Rasmussen University-FloridaFor-Profit$18,38531.6$58,1505
Full Sail UniversityFor-Profit$29,24241.5$70,3976
AI Miami International University of Art and DesignFor-Profit$22,83530.9$74,0117
Strayer University-FloridaFor-Profit$23,33028.2$82,8698
DeVry University-FloridaFor-Profit$27,82527.4$101,5129
Schiller International UniversityFor-Profit$24,63022.6$108,77010
South University-West Palm BeachFor-Profit$21,45918.9$113,74911
South University-TampaFor-Profit$21,96115.4$142,75212
Hobe Sound Bible CollegePrivate Nonprofit$8,75951.8$16,9151
Baptist University of FloridaPrivate Nonprofit$9,69054.1$17,9092
Talmudic College of FloridaPrivate Nonprofit$14,65357.4$25,5193
Ave Maria UniversityPrivate Nonprofit$18,98854.5$34,8574
Stetson UniversityPrivate Nonprofit$24,00863.2$37,9855
Florida Southern CollegePrivate Nonprofit$25,70665.0$39,5486
Florida CollegePrivate Nonprofit$21,21052.9$40,0637
Saint Leo UniversityPrivate Nonprofit$18,99747.4$40,1188
Rollins CollegePrivate Nonprofit$30,03074.3$40,4169
Flagler CollegePrivate Nonprofit$23,92457.3$41,73910
University of MiamiPrivate Nonprofit$35,04282.8$42,33811
Polytechnic University of Puerto Rico-MiamiPrivate Nonprofit$23,47755.0$42,68612
Warner UniversityPrivate Nonprofit$17,75439.8$44,66413
St. John Vianney College SeminaryPrivate Nonprofit$31,38869.8$44,96114
Trinity Baptist CollegePrivate Nonprofit$16,16935.4$45,72615
Bethune-Cookman UniversityPrivate Nonprofit$16,08134.7$46,38016
Johnson University FloridaPrivate Nonprofit$17,14636.9$46,49617
Palm Beach Atlantic UniversityPrivate Nonprofit$25,34754.5$46,54318

The for-profit ranking is the most striking. San Ignacio University delivers cost per completer of $11,789, the lowest in the entire result set across all sectors. South University-Tampa delivers $142,752, more than twelve times worse. The two institutions are in the same sector, charge in the same neighborhood ($21,961 vs $18,306 net price), but their completion rates differ by a factor of five (15.4 vs 78.0 percent). The sector aggregate from phase 03 (39.7 percent average completion) hides this dispersion completely.

The private nonprofit ranking shows a different shape. The top 18 institutions cluster between $16,000 and $47,000 cost per completer, an order of magnitude tighter than the for-profit ranking. The University of Miami appears at rank 11 despite having the highest absolute net price ($35,042) because its 82.8 percent completion rate is also the highest in the list. The bottom of the private nonprofit ranking (not shown here, but visible in the full result on Datasette Lite) reaches into the $80,000-plus range for institutions that combine moderate price with low completion.

What this doesn’t tell you: cost per completer is a constructed metric, not an outcome. It says nothing about what completers earn after graduation, what they study, or whether they would have completed at any institution. A high cost per completer ratio at an institution that serves Pell-eligible students with low academic preparation is not the same kind of finding as a high ratio at an institution that recruits the same population as flagship publics. The metric is useful for surfacing dispersion within a sector, not for ranking institutional value.

The Closure-Wave Concentration
#

Phase 03 documented that thirteen for-profit four-year institutions disappeared from the data between 2014 and 2022. The next question is the systemic one: what fraction of the for-profit sector’s enrollment did those thirteen institutions represent at their closure point, and how did the share evolve as closures progressed?

-- For-profit closure-wave concentration. What fraction of for-profit
-- enrollment was concentrated in institutions that subsequently closed?
-- The CTE classifies every for-profit by whether it stopped reporting
-- before 2023 (Closed) or made it through to 2023 (Survived). The outer
-- query aggregates enrollment by year and status, with a window function
-- (SUM(SUM(ugds)) OVER PARTITION BY cohort_year) computing each year's
-- total as the denominator for the percentage share calculation.
WITH for_profit_classification AS (
    SELECT
        unitid,
        CASE
            WHEN last_year_in_data < 2023 THEN 'Closed'
            ELSE 'Survived'
        END AS closure_status
    FROM institutions
    WHERE sector = 'for_profit'
)
SELECT
    am.cohort_year AS "Cohort Year",
    fpc.closure_status AS "Status",
    COUNT(*) AS "Institutions",
    SUM(am.ugds) AS "Total UG Enrollment",
    ROUND(100.0 * SUM(am.ugds) / SUM(SUM(am.ugds)) OVER (PARTITION BY am.cohort_year), 1) AS "% of Year Total"
FROM annual_metrics am
JOIN for_profit_classification fpc USING (unitid)
WHERE am.ugds IS NOT NULL
GROUP BY am.cohort_year, fpc.closure_status
ORDER BY am.cohort_year, fpc.closure_status DESC;

Run this query in Datasette Lite

Result (19 rows; for-profit enrollment by closure status across the decade):

Cohort YearStatusInstitutionsTotal UG Enrollment% of Year Total
2014Survived1331,80179.8
2014Closed98,03720.2
2015Survived1633,25385.3
2015Closed85,71914.7
2016Survived1733,80190.1
2016Closed83,7159.9
2017Survived1734,37293.8
2017Closed62,2686.2
2018Survived1736,43796.0
2018Closed21,5124.0
2019Survived1637,80997.2
2019Closed21,0802.8
2020Survived1841,65198.0
2020Closed28582.0
2021Survived1941,37398.0
2021Closed18572.0
2022Survived1942,20397.7
2022Closed29732.3
2023Survived2136,475100.0

Closing for-profits represented 20 percent of for-profit enrollment in 2014, dropping below 5 percent by 2018.

Share of Florida four-year for-profit undergraduate enrollment by closure status across cohort years 2014 to 2023.

In 2014, the institutions that would later close represented 20.2 percent of for-profit four-year enrollment in Florida, about 8,037 students. By 2017 the share had dropped to 6.2 percent, and by 2018 it was 4.0 percent. The closure wave was not just an event; it was a multi-year contraction with most of the displaced enrollment occurring in the first three years.

The cumulative count of displaced students is harder to compute exactly because students who appeared in 2014 at a closing institution may have transferred and been counted in subsequent years’ surviving-institution rows. The minimum estimate (sum of “Closed” enrollments across all years) is roughly 25,000 student-years; the actual count of unique displaced students is somewhere between 8,000 and 25,000 depending on transfer patterns the data does not capture.

What this doesn’t tell you: the closure wave’s policy context. The Department of Education’s Borrower Defense rules, the closure of Education Management Corporation (parent of Argosy and the Sanford-Brown chain), the Federal Student Aid program’s gainful employment regulations, and the ongoing scrutiny of for-profit higher education by state attorneys general all happened in this window. The data shows the closures; it does not explain them.

Where Did The Students Go
#

If 8,037 for-profit students lost their institution in 2014 alone, where did they go? The data does not directly track student transfers, but the surviving for-profit enrollment trajectory is suggestive: if survivors grew during and after closure years, that is consistent with student migration toward the surviving institutions. If survivors stayed flat, the closures represent net market contraction.

-- Surviving for-profit enrollment trajectory across the decade. The
-- survivors CTE filters to for-profits that reported in both 2014 and
-- 2023 (the institutions that endured the closure wave). The outer
-- query aggregates their annual undergraduate enrollment, showing
-- whether displaced students re-enrolled at survivors (growing
-- trajectory) or whether the closures represented net market
-- contraction (flat trajectory). The actual shape is rise then fall.
WITH survivors AS (
    SELECT unitid, instnm
    FROM institutions
    WHERE sector = 'for_profit'
      AND first_year_in_data <= 2014
      AND last_year_in_data = 2023
)
SELECT
    am.cohort_year            AS "Cohort Year",
    COUNT(DISTINCT am.unitid) AS "Survivors Reporting",
    SUM(am.ugds)              AS "Total Enrollment",
    CAST(ROUND(AVG(am.ugds), 0) AS INTEGER)    AS "Avg Enrollment"
FROM annual_metrics am
JOIN survivors s USING (unitid)
WHERE am.ugds IS NOT NULL
GROUP BY am.cohort_year
ORDER BY am.cohort_year;

Run this query in Datasette Lite

Result:

Cohort YearSurvivors ReportingTotal EnrollmentAvg Enrollment
20141331,8012,446
20151332,9762,537
20161333,4142,570
20171333,7922,599
20181335,7752,752
20191237,2623,105
20201240,9533,413
20211240,0593,338
20221240,5953,383
20231234,7002,892

Surviving for-profit enrollment grew 29 percent from 2014 to a 2020 peak, then contracted 18 percent in three years.

Total undergraduate enrollment at Florida for-profit four-year institutions that reported every year from 2014 through 2023.

The pattern is real and visible. Survivor enrollment grew from 31,801 in 2014 to a peak of 40,953 in 2020, a 29 percent increase across six years that coincides almost exactly with the active closure window. Average per-institution enrollment grew similarly. Some of the closure-displaced students did re-enroll at surviving for-profits.

The 2023 drop is also worth noting. Survivor enrollment fell to 34,700 from a 40,953 peak, an 18 percent decline in three years. This is a recent contraction. The for-profit four-year sector did not simply consolidate during the closure wave and then stabilize; it consolidated, expanded, and is now contracting again. Whether this reflects pandemic enrollment effects, Federal Student Aid regulatory changes, or broader demographic pressure is not visible in the College Scorecard data alone.

What this doesn’t tell you: the survivor-growth pattern is consistent with student migration but does not prove it. The growth could equally reflect new students entering the sector, the surviving institutions opening new programs that attracted enrollment from other sectors, or simply institutions reporting more aggressively for federal aid purposes. Establishing that displaced students migrated to specific surviving institutions requires student-level data the College Scorecard does not provide.

The HBCU Thread
#

Florida has four Historically Black Colleges and Universities by the Higher Education Act of 1965 designation: Florida A&M University (the only public HBCU in the state), Bethune-Cookman University, Edward Waters University, and Florida Memorial University (the three private nonprofit HBCUs). The orientation queries in phase 03 did not single them out. The findings phase asks: how do they compare to their sector peers on the metrics most relevant to a recruiter or a policymaker?

The query filters by UNITID rather than by the hbcu flag, because phase 02 documents that the flag column is unreliable in this database. The four UNITIDs are the verified institution numbers from the database itself, and the HBCU designation is a matter of external authoritative record (the U.S. Department of Education’s HBCU list) rather than a derived classification.

-- HBCU comparison filtered by UNITID rather than the i.hbcu flag.
-- Phase 02 documents that the HBCU column is empty in this database
-- due to a build script gap. Florida's four HBCUs are well-known by
-- the Higher Education Act of 1965 designation; we hardcode their
-- UNITIDs (verified from the institutions table by INSTNM) to do
-- the comparison reliably.
SELECT
    i.instnm AS "Institution",
    CASE i.sector
        WHEN 'public'            THEN 'Public'
        WHEN 'private_nonprofit' THEN 'Private Nonprofit'
        WHEN 'for_profit'        THEN 'For-Profit'
    END                             AS "Sector",
    CAST(ROUND(AVG(am.ugds), 0) AS INTEGER)          AS "Avg Enrollment",
    CAST(ROUND(AVG(am.tuitionfee_in), 0) AS INTEGER) AS "Avg In-State Tuition",
    ROUND(AVG(am.pctpell) * 100, 1) AS "Avg Pell %",
    ROUND(AVG(am.c150_4) * 100, 1)  AS "Avg Completion %",
    ROUND(AVG(am.cdr3) * 100, 1)    AS "Avg Default Rate %"
FROM institutions       i
JOIN annual_metrics     am USING (unitid)
WHERE i.unitid IN (132602, 133526, 133650, 133979)
GROUP BY i.unitid, i.instnm, i.sector
ORDER BY AVG(am.ugds) DESC;

Run this query in Datasette Lite

Result:

InstitutionSectorAvg EnrollmentAvg In-State TuitionAvg Pell %Avg Completion %Avg Default Rate %
Florida Agricultural and Mechanical UniversityPublic7,487$5,78559.349.47.7
Bethune-Cookman UniversityPrivate Nonprofit3,191$14,64476.334.713.7
Florida Memorial UniversityPrivate Nonprofit1,173$16,18671.835.912.0
Edward Waters UniversityPrivate Nonprofit995$14,00249.125.716.3

The peer-group baseline (sector benchmarks, all 112 Florida four-year institutions):

-- Sector benchmarks for the HBCU comparison: average enrollment,
-- in-state tuition, Pell percentage, completion rate, and default rate
-- by sector across all 112 Florida four-year institutions. The HBCU
-- values from the previous query are read alongside these baselines
-- to show how each HBCU's metrics compare to its sector peers. ALL
-- enrolled institutions contribute to these averages, including the
-- HBCUs themselves (so the public sector average includes FAMU).
SELECT
    CASE i.sector
        WHEN 'public'            THEN 'Public'
        WHEN 'private_nonprofit' THEN 'Private Nonprofit'
        WHEN 'for_profit'        THEN 'For-Profit'
    END                             AS "Sector",
    CAST(ROUND(AVG(am.ugds), 0) AS INTEGER)          AS "Avg Enrollment",
    CAST(ROUND(AVG(am.tuitionfee_in), 0) AS INTEGER) AS "Avg In-State Tuition",
    ROUND(AVG(am.pctpell) * 100, 1) AS "Avg Pell %",
    ROUND(AVG(am.c150_4) * 100, 1)  AS "Avg Completion %",
    ROUND(AVG(am.cdr3) * 100, 1)    AS "Avg Default Rate %"
FROM institutions       i
JOIN annual_metrics     am USING (unitid)
GROUP BY i.sector
ORDER BY i.sector;

Run this query in Datasette Lite

Result:

SectorAvg EnrollmentAvg In-State TuitionAvg Pell %Avg Completion %Avg Default Rate %
For-Profit1,851$15,48249.039.77.2
Private Nonprofit2,105$23,72141.247.65.8
Public19,690$5,91536.062.83.4

Florida HBCUs serve substantially higher Pell-eligible populations than their sector peers, with completion and default outcomes that reflect that population difference.

Three metrics compared across each Florida HBCU and its sector benchmark.

The comparison surfaces a real pattern. Florida HBCUs serve dramatically higher-poverty student populations than their sector peers. Bethune-Cookman’s 76 percent Pell-eligible enrollment is roughly twice the Private Nonprofit sector average of 41 percent. FAMU’s 59 percent Pell rate is roughly two-thirds higher than the Public sector average of 36 percent. The mission of these institutions is reflected in who attends them.

The downstream metrics reflect the population difference. Completion rates run lower than sector averages: FAMU 49 percent vs Public 63; the private HBCUs 26-36 percent vs Private Nonprofit 48 percent. Default rates run higher: FAMU 7.7 vs Public 3.4; the private HBCUs 12-16 percent vs Private Nonprofit 6 percent. The private HBCUs are also smaller than their sector peers (995 to 3,191 enrolled vs 2,105 sector average) and charge less than the sector mean ($14,000 to $16,000 vs $23,721).

This is not a story of HBCU underperformance. It is a story of mission-aligned institutions serving lower-income student populations than their sector peers, with cost, completion, and default outcomes that reflect that population difference. A graduate from Bethune-Cookman who entered with a high Pell-eligibility rate, took on substantial debt, and completed in five or six years has a different higher-education experience than a graduate from a flagship state university with high parental income, a National Merit Scholarship, and a four-year completion. The College Scorecard’s outcome metrics flatten these student-population differences into a single completion rate or a single default rate; the comparison without that context is incomplete.

What this doesn’t tell you: the institutional value HBCUs provide that does not show up in completion rates or default rates. The cultural significance, the alumni networks, the role in producing graduates who serve specific communities, the historical mission of access for students excluded from majority-white institutions for most of American history. None of this is in the College Scorecard data. Any reader who concludes from the table above that HBCUs are inferior institutions is reading the data outside the population context that defines them.

The Top Of The Earnings Distribution
#

Phase 02 documented that 10-year-out median earnings (md_earn_wne_p10) is reported only in cohort years 2014 and 2020. Phase 04 uses the 2020 snapshot to identify the institutions whose alumni report the highest earnings ten years after entry, framed as a window-function ranking across the entire Florida four-year landscape.

The cohort year 2020 reports earnings for students who entered around 2009-10. These are pre-pandemic earnings reflecting careers that started during the post-Great-Recession recovery and matured through the 2010s.

-- Top 15 Florida four-year institutions by 10-year-out median earnings
-- (cohort year 2020 snapshot, the most recent year md_earn_wne_p10 is
-- reported). The CTE filters to non-null earnings rows for this single
-- year; the outer query applies RANK() OVER ORDER BY earnings DESC for
-- statewide ranking. Sector is included so the reader can see the
-- for-profit nursing schools and aviation programs that occupy the top
-- of the distribution alongside the broad-curriculum publics that
-- cluster in the $58K-$72K range.
WITH earnings_2020 AS (
    SELECT
        i.unitid,
        i.instnm,
        CASE i.sector
            WHEN 'public'            THEN 'Public'
            WHEN 'private_nonprofit' THEN 'Private Nonprofit'
            WHEN 'for_profit'        THEN 'For-Profit'
        END AS sector_display,
        am.md_earn_wne_p10
    FROM institutions       i
    JOIN annual_metrics     am USING (unitid)
    WHERE am.cohort_year = 2020
      AND am.md_earn_wne_p10 IS NOT NULL
)
SELECT
    instnm                                      AS "Institution",
    sector_display                              AS "Sector",
    md_earn_wne_p10                             AS "10-Year Earnings",
    RANK() OVER (ORDER BY md_earn_wne_p10 DESC) AS "Statewide Rank"
FROM earnings_2020
ORDER BY md_earn_wne_p10 DESC
LIMIT 15;

Run this query in Datasette Lite

Result (top 15 by 10-year-out median earnings, 2020 cohort report):

InstitutionSector10-Year EarningsStatewide Rank
West Coast University-MiamiFor-Profit$102,6721
Chamberlain University-FloridaFor-Profit$92,4052
Embry-Riddle Aeronautical University-Daytona BeachPrivate Nonprofit$84,1313
Embry-Riddle Aeronautical University-WorldwidePrivate Nonprofit$84,1313
University of MiamiPrivate Nonprofit$75,3285
AdventHealth UniversityPrivate Nonprofit$72,2826
University of FloridaPublic$71,5887
University of Florida-OnlinePublic$71,5887
Jacksonville UniversityPrivate Nonprofit$68,0109
Florida State UniversityPublic$61,67510
Florida International UniversityPublic$60,24911
The University of TampaPrivate Nonprofit$59,43612
Nova Southeastern UniversityPrivate Nonprofit$59,20913
University of Central FloridaPublic$58,30814
Rollins CollegePrivate Nonprofit$58,29515

Career-focused for-profit nursing institutions and Embry-Riddle's aviation programs lead the 10-year earnings ranking; the public flagships cluster in the $58K-$72K range.

Top 10 Florida four-year institutions by reported 10-year-out median earnings (cohort year 2020 snapshot). Bars colored by sector. The full top 15 ranking is in the Result table above.

The top of the ranking reveals what happens when an institution’s curriculum is concentrated in one high-earning field. West Coast University-Miami and Chamberlain University-Florida are nursing-focused for-profit institutions; their alumni report median 10-year earnings of $102,672 and $92,405 respectively, well above the rest of the list. Embry-Riddle (aeronautical engineering) tied for third at $84,131 across both campus and worldwide programs. These three institutions occupy four of the top five slots not because they are exceptional schools in absolute terms but because their graduates are concentrated in fields with reliably high salaries.

The University of Miami at fifth ($75,328) is the highest-earning broad-curriculum private nonprofit. The University of Florida at seventh ($71,588) is the highest-earning public, edged out by AdventHealth University (a healthcare-focused private nonprofit) at $72,282. Florida State, FIU, and UCF round out the public flagships, all in the $58,000-$62,000 range.

What this doesn’t tell you: the comparison treats earnings as institutional output, but earnings reflect both the institution and the field of study. A career-focused institution like West Coast University with a nursing-only curriculum will outrank a broad-curriculum university even if the broad-curriculum university produces stronger graduates in absolute terms, because the earnings number is averaged across fields and most fields pay less than nursing. The Department of Education publishes earnings data by program (CIPCODE × CREDLEV) precisely to address this; institution-level earnings are useful for ranking but should not be read as institutional quality metrics.

What The Findings Add Up To
#

Five threads pulled, each rooted in a specific question phase 03 raised. The for-profit closure wave was real and concentrated in the first three years of the window, with surviving for-profits absorbing a meaningful share of the displaced enrollment before contracting again in 2023. Cost-per-completer dispersion within sectors is wider than the sector averages suggest, with twelvefold ranges visible in the for-profit data. Florida’s HBCUs serve substantially higher-poverty populations than their sector peers, with outcome metrics that reflect the population difference rather than institutional quality. The top of the 10-year earnings distribution is dominated by career-focused institutions in nursing and aviation, not by the flagship publics that dominate undergraduate enrollment.

None of these findings is a definitive analysis. Each one names what the data shows and what it does not show, what it can support and what would require additional data sources to defend. The case study is not the analysis; it is the worked example of how a verified dataset, queried with documented SQL, can surface specific structural patterns that a single GROUP BY would not.

The full database is at https://pgbd.casa/data/college-scorecard-fl.sqlite and queryable directly in the browser via Datasette Lite. The build script is at tools/build_florida_scorecard.py. The questions a reader might ask of this database are not bounded by what this case study chose to ask. The reproducibility-is-the-floor commitment from the case study philosophy is satisfied: anyone can re-run every query in this case study, change the parameters, and ask their own questions.