πŸͺ² BugOut Index

Methodology β€” v1.0.0

The BugOut Index aggregates six normalized metrics into a single weighted score on a 0–100 scale, where higher values indicate greater societal stability. This page describes how the current week's number was produced.

1. Inputs and weights

Raw weights are relative coefficients that sum to 0.72. The β€œshare of score” column is weight / 0.72 β€” the fraction of the finished index each metric actually carries after the publisher divides by the sum of weights. Tile labels that say β€œRaw weight 15%” are the raw weight Γ— 100, not the post-division share.

MetricRaw valueUnitNormalization rangeNormalizedRaw weightShare of scoreSource
Inflation Rate 3.35 % βˆ’10 to 15 46.59 15.0% 20.8% FRED (CPIAUCSL)
Violent + Property Crime 2,723.00 per 100k 500 to 8,000 70.36 12.0% 16.7% Real-Time Crime Index
Unemployment Rate 4.10 % 0 to 25 83.6 12.0% 16.7% FRED (UNRATE)
Debt-to-GDP Ratio 122.59 % 0 to 200 38.7 12.0% 16.7% FRED (GFDEGDQ188S)
Homelessness Rate 0.23 % of pop. 0 to 0.5 54.0 9.0% 12.5% HUD AHAR
Trust in Government 41.00 % confidence 0 to 80 (inverted) 51.25 12.0% 16.7% Edelman Trust Barometer

2. Normalization

Each metric is normalized to 0–100 using predefined thresholds:

normalized = (1 βˆ’ (raw βˆ’ min) / (max βˆ’ min)) Γ— 100

Trust in Government is inverted (higher trust β†’ higher stability) by applying 100 βˆ’ normalized after the above transform β€” equivalently a linear map of the trust percent on 0–80. An Edelman reading of 41 normalizes to 51.25. Inflation at 4% on βˆ’10…15 normalizes to 44.

3. Aggregation

The index is the weight-normalized sum of the per-metric scores (divide by the sum of weights; with all six present that denominator is 0.72). A perfect week on every metric therefore scores 100:

BOI = Ξ£ (normalized_i Γ— weight_i) / Ξ£ weight_i

4. Risk bands

RangeBandInterpretation
70 – 100High StabilityLow risk β€” focus on long-term planning.
55 – 69.99Moderate StabilityWarning signs β€” monitor trends; prepare contingencies.
40 – 54.99Low StabilityHeightened risk β€” initiate preparedness measures.
Below 40Critical InstabilityCollapse likely β€” activate bug-out plans.

5. Limitations and caveats

6. Reproducibility

Every weekly run commits the raw inputs, the computed normalized scores, and the final index to this repository. The code that produced this page is open source; you can recompute any historical week by checking out that commit and re-running runtime/publish/weekly_run.py.