saturn·

quirky silence data

source /home/coolhand/html/datavis/data_trove/data/quirky/silence_data.json 6,998 rows 6 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 6,998 world languages, each with a name (n), speaker population (p), geographic coordinates (lat/lng), a numeric score (s), and an endangerment status (ss). The most striking feature is the extreme skew in speaker population: the median language has just 11,000 speakers but the mean is over 1.1 million, with a max near 965 million and roughly 13% of entries showing zero speakers — a tell-tale signature of dying or dormant languages. The endangerment status field is also worth a close look: only about 44% of languages are 'safe', while the remaining categories span from 'vulnerable' all the way to 'extinct' (219 cases). Geography is broadly distributed (latitude centered near the tropics, longitude spanning the globe), so the dataset supports both statistical and map-based exploration.

citing: row_count · columns.p.stats.median · columns.p.stats.mean · columns.p.stats.max · columns.p.stats.zero_rate · columns.p.stats.skew · columns.ss.top_rate · columns.ss.top_values · columns.lat.stats.median · columns.lng.stats.median · columns.s.n_unique

Schema

6 columns
Per-column summary. Click column name to jump to its detail.
Alerts
n text 0.0% 6,998
near_unique one_word
lat numeric 0.0% 4,048
lng numeric 0.0% 5,560
p numeric 0.0% 1,627
high_skew outliers
s numeric 0.0% 6
ss categorical 0.0% 7

n

text identifier near_unique one_word
Column 'n' holds short text labels, one per row, with all 6998 values unique and no nulls. About 73% are single words (word_mean 1.37, len_mean ~9), and the top tokens — 'language', 'sign', 'zapotec', 'mixtec', 'naga' plus directional modifiers — strongly suggest these are language names (e.g., 'Southern Zapotec', 'sign language' variants). Vocab_size (7003) slightly exceeds n, consistent with a small set of recurring qualifiers across otherwise unique names. Treatment: Treat as a name key; left-join on this rather than using as a model feature. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
6,998
len_min
1
len_max
43
len_mean
8.972
len_median
7
len_p95
21
word_mean
1.369
word_median
1
n_empty
0
n_duplicates
0
duplicate_rate
0
vocab_size
7,003
readability_flesch_mean
57.13
emoji_rate
0
url_rate
0
one_word_rate
0.7314
allcaps_rate
0
boilerplate_rate
0

lat

numeric feature
Latitude coordinates spanning -55.27 to 73.14, covering most inhabited latitudes from sub-Antarctic to high Arctic. The distribution leans north of the equator (mean 8.44, median 6.37) with mild positive skew (0.70) and 149 outliers (2.1%) likely representing extreme polar observations. With 4048 unique values across 6998 rows and no nulls, this is clean geospatial data ready for use. Treatment: Pair with longitude for geospatial features; consider binning by hemisphere or climate zone. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
4,048
min
-55.27
max
73.14
mean
8.437
median
6.37
std
18
q1
-4.65
q3
18.29
iqr
22.94
skew
0.6975
kurtosis
0.4773
n_outliers
149
outlier_rate
0.02129
zero_rate
0

lng

numeric feature
This is a longitude feature spanning -178.78 to 179.31 across 6998 rows with 5560 unique values and no nulls. The distribution is mildly left-skewed (-0.498) with a median of 47.65 and IQR from 8.28 to 123.94, suggesting an Eastern-Hemisphere bias rather than a uniform global spread. Only 12 outliers (0.17%) flagged, which is expected given the bounded geographic range. Treatment: Pair with latitude as a geospatial coordinate; consider cyclical encoding or geohashing rather than treating as a plain scalar. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
5,560
min
-178.8
max
179.3
mean
52.46
median
47.65
std
79.67
q1
8.282
q3
123.9
iqr
115.7
skew
-0.4982
kurtosis
-0.673
n_outliers
12
outlier_rate
0.001715
zero_rate
0

p

numeric feature high_skew outliers
Column `p` is a heavily right-skewed numeric value spanning 0 to 964,553,200 with a median of just 11,000 — likely a monetary amount, count, or size metric. The skew of 39.45 and kurtosis of 1870 are extreme, with 16.56% of rows flagged as outliers and 13.46% sitting at exactly zero. The mean (1,157,741) sits more than 100x above the median, so summary averages will be misleading. Treatment: Apply a log1p transform before modelling and consider a separate zero-vs-nonzero indicator. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
1,627
min
0
max
9.646e+08
mean
1.158e+06
median
11,000
std
1.73e+07
q1
1,200
q3
83,000
iqr
81,800
skew
39.45
kurtosis
1870
n_outliers
1,159
outlier_rate
0.1656
zero_rate
0.1346

s

numeric feature
Column 's' holds an integer-valued score on a 0-5 scale with only 6 unique values across 6998 rows and no nulls. The distribution skews high (mean 3.80, median 4.0, skew -1.04), with Q1-Q3 spanning 3 to 5 and about 3.6% of rows at zero. This looks like an ordinal rating rather than a continuous measurement. Treatment: Treat as an ordinal rating; consider ordinal encoding or bucket low scores before modelling. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
6
min
0
max
5
mean
3.796
median
4
std
1.366
q1
3
q3
5
iqr
2
skew
-1.041
kurtosis
0.4154
n_outliers
0
outlier_rate
0
zero_rate
0.03572

ss

categorical label
The column 'ss' is a categorical safety/endangerment status with 7 distinct levels ranging from 'safe' to 'extinct', plus an 'unknown' bucket. 'safe' dominates at 43.9% (3074 of 6998) with 'definitely endangered' second at 1753, and there are no nulls. The distribution is moderately balanced (entropy ratio 0.76) but the tail categories like 'extinct' (219) and 'unknown' (91) are sparse. Treatment: Encode as an ordinal scale (safe → extinct) and treat 'unknown' separately or impute. high · anthropic:claude-opus-4-7
n
6,998
nulls
0 (0.0%)
unique
7
top_value
safe
top_rate
0.4393
cardinality
7
entropy
2.122
entropy_ratio
0.7557