saturn·

healthcare data rural urban classification 20260121

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

Reading

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

This dataset catalogs 3,222 U.S. counties, each identified by a unique 5-character FIPS code and county name, and classified as either rural or urban/suburban. The two classification columns (`rural` and `rural_category`) are perfectly redundant, both showing 2,212 counties (about 68.7%) flagged as Rural versus 1,010 as Urban/Suburban. The most useful angle here is the rural/urban split, since FIPS and county_name are unique identifiers with no aggregate signal. Top words in `county_name` hint at geographic concentration, with Texas (256), Virginia (189), and Georgia (159) contributing the most counties.

citing: row_count · column_count · columns[2].top_values · columns[2].stats.top_rate · columns[3].top_values · columns[1].top_words · columns[0].n_unique

Schema

4 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
rural categorical 0.0% 2
rural_category categorical 0.0% 2

fips

text identifier near_unique one_word allcaps short_text
This column holds 5-character FIPS codes, one per row across all 3222 records with zero nulls and zero duplicates. Every value is exactly 5 characters, single-word, and the sample tokens (01001, 01003, 01005...) match the standard 2-digit state + 3-digit county FIPS format. With n_unique equal to n, this is a row-level identifier rather than a feature. Treatment: Treat as a county key and left-join to geographic reference tables; do not use as a model 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
Full county identifiers, almost certainly formatted like 'X County, ' — 2,999 of 3,222 rows contain the token 'county,' and the remaining top tokens (texas, virginia, georgia, north carolina) are US state names. Every one of the 3,222 values is unique with zero nulls, duplicates, or empty strings, and lengths cluster tightly between 16 and 31 characters. Texas (256) and Virginia (189) lead the state distribution, consistent with the known US county counts. Treatment: Use as a geographic key; left-join to state/FIPS lookups rather than feeding to a model directly. 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

rural

categorical feature
Boolean flag indicating rural status, stored as the strings "True"/"False" with no nulls across 3222 rows. The split is imbalanced toward rural: 2212 True (68.7%) versus 1010 False, giving entropy 0.897 of the maximum 1.0. Treatment: Cast string "True"/"False" to boolean or 0/1 before modelling. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
2
top_value
True
top_rate
0.6865
cardinality
2
entropy
0.8971
entropy_ratio
0.8971

rural_category

categorical feature
A binary geographic classifier splitting records into 'Rural' (2212) and 'Urban/Suburban' (1010) with no nulls across 3222 rows. The split is uneven at roughly 68.7% rural, but entropy ratio of 0.897 indicates the minority class is still well represented. Cardinality of 2 makes this a clean categorical feature with no dirty variants. Treatment: Encode as a binary indicator (e.g., is_rural) before modelling. high · anthropic:claude-opus-4-7
n
3,222
nulls
0 (0.0%)
unique
2
top_value
Rural
top_rate
0.6865
cardinality
2
entropy
0.8971
entropy_ratio
0.8971