saturn·

healthcare data county health rankings 20260121

source /home/coolhand/html/datavis/data_trove/cache/healthcare_data/county_health_rankings_20260121.parquet 3,222 rows 5 columns profiled 2026-05-01 raw JSON static .html .ipynb Report Notebook

Reading

dataset summary · high confidence anthropic:claude-opus-4-7

This dataset covers 3,222 U.S. counties (one row per FIPS code) with population totals and uninsured counts and rates. Both total_pop and uninsured_pop are extremely right-skewed (skew 13.4 and 17.8) with hundreds of outliers, indicating a handful of very large counties dominate the raw counts — analysts should work in per-capita or log space. The uninsured_rate is the more comparable metric: median 0.12 with about 17.5% of counties reporting zero, and a long tail reaching 3.7 that warrants a data-quality check. The county_name field shows Texas, Virginia, and Georgia contributing the most counties, useful context for any state-level rollups.

citing: row_count · column_count · columns.total_pop.stats.skew · columns.total_pop.stats.median · columns.total_pop.stats.max · columns.total_pop.stats.n_outliers · columns.uninsured_pop.stats.skew · columns.uninsured_pop.stats.zero_rate · columns.uninsured_rate.stats.median · columns.uninsured_rate.stats.max · columns.uninsured_rate.stats.zero_rate · columns.county_name.top_words

Schema

5 columns
Per-column summary. Click column name to jump to its detail.
Alerts
fips text 0.0% 3,222
near_unique one_word allcaps short_text
county_name text 0.0% 3,222
near_unique
total_pop numeric 0.0% 3,141
high_skew outliers
uninsured_pop numeric 0.0% 584
high_skew outliers
uninsured_rate numeric 0.0% 152
high_skew outliers

fips

text identifier near_unique one_word allcaps short_text
This column is a 5-character FIPS code identifying U.S. counties, with every one of the 3222 rows holding a unique value (n_unique equals n) and zero nulls. Lengths are uniformly 5 (min, median, max all 5), values are single tokens (one_word_rate 1.0), and the leading samples like 01001, 01003, 01005 match Alabama county FIPS prefixes. It functions as a primary key rather than a feature. Treatment: Use as a join key to county-level reference tables; do not feed into a model as a feature. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
3,222
len_min
5
len_max
5
len_mean
5
len_median
5
len_p95
5
word_mean
1
word_median
1
n_empty
0
n_duplicates
0
duplicate_rate
0
vocab_size
3,222
readability_flesch_mean
121.2
emoji_rate
0
url_rate
0
one_word_rate
1
allcaps_rate
1
boilerplate_rate
0

county_name

text identifier near_unique
This column holds U.S. county identifiers, likely formatted as 'County Name County, State' given that 'county,' appears in 2,999 of 3,222 rows and state names like Texas (256), Virginia (189), and Georgia (159) dominate the top tokens. Every one of the 3,222 rows is unique with zero nulls and zero duplicates, consistent with a canonical roster of U.S. counties. String lengths cluster tightly (min 16, median 24, max 59) and average 3.25 words, so formatting is highly regular. Treatment: Use as a join key to state/county references; do not feed raw into a model. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
3,222
len_min
16
len_max
59
len_mean
24.32
len_median
24
len_p95
31
word_mean
3.248
word_median
3
n_empty
0
n_duplicates
0
duplicate_rate
0
vocab_size
1,990
readability_flesch_mean
10.28
emoji_rate
0
url_rate
0
one_word_rate
0
allcaps_rate
0
boilerplate_rate
0

total_pop

numeric feature high_skew outliers
Likely a county- or region-level total population count: 3222 rows with 3141 unique values, no nulls, integer-scale magnitudes from 47 up to 9,866,623. The distribution is extremely right-skewed (skew 13.38, kurtosis 298.69) with median 25,328 far below mean 102,232, and 14.06% of rows flagged as outliers. The std of 326,933 dwarfs the IQR of 54,579, consistent with a few massive metros pulling the tail. Treatment: log-transform before regression to tame the heavy right tail. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
3,141
min
47
max
9.867e+06
mean
1.022e+05
median
25,328
std
3.269e+05
q1
1.061e+04
q3
65,190
iqr
5.458e+04
skew
13.38
kurtosis
298.7
n_outliers
453
outlier_rate
0.1406
zero_rate
0

uninsured_pop

numeric feature high_skew outliers
Counts of uninsured people per record, likely aggregated to a geographic unit (3222 rows hints at US counties). The distribution is brutally right-skewed: median is 36 but the mean is 159.9 and the max hits 20915, with skew 17.8 and kurtosis 462.9. Roughly 17.2% of rows are zero and 11.4% flag as outliers, so a handful of large jurisdictions dominate the totals. Treatment: Apply a log1p transform and consider normalising by population before modelling. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
584
min
0
max
20,915
mean
159.9
median
36
std
627.2
q1
7
q3
120
iqr
113
skew
17.81
kurtosis
462.9
n_outliers
368
outlier_rate
0.1142
zero_rate
0.1723

uninsured_rate

numeric feature high_skew outliers
This looks like a per-record uninsured rate, ranging from 0.0 to 3.7 with a median of 0.12 and IQR of 0.21. The distribution is severely right-skewed (skew 4.10, kurtosis 27.70) with 230 outliers (7.14%) and 17.54% exact zeros, and the max of 3.7 is implausible if this is meant to be a proportion bounded at 1. Treatment: Validate the >1 values against the expected [0,1] range, then log- or logit-transform after winsorising before modelling. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
152
min
0
max
3.7
mean
0.2002
median
0.12
std
0.2829
q1
0.04
q3
0.25
iqr
0.21
skew
4.095
kurtosis
27.7
n_outliers
230
outlier_rate
0.07138
zero_rate
0.1754