saturn·

blissapi

saturn notebook · generated 2026-05-01 Report Notebook

Overview

Source: /home/coolhand/data/blissapi.db

Saturn profiled 6,181 rows across 2 columns. The stats below are deterministic and machine-readable; the prose is a language-model interpretation of those stats (opt-in, added after the fact, never sees raw rows).

[2]:
!pip install saturn-dissect
import subprocess
subprocess.run([
    "saturn", "analyze", "/home/coolhand/data/blissapi.db",
    "--findings", "blissapi.json",
    "--llm", "anthropic:claude-opus-4-7",
])

Summary confidence: high

This dataset contains 6,181 rows and 2 columns drawn from blissapi.db, pairing a free-text 'keyword' field with a categorical 'symbol_count' field. Every keyword is unique (6,181 distinct values across 6,181 rows) and is exactly one word, with lengths ranging from 2 to 72 characters and a median of 12. The 'symbol_count' column is fully constant at the value '1', so it carries no information for analysis. The most useful first look is the distribution of keyword lengths, since that is essentially the only varying signal in the data.

citing: row_count · column_count · columns[keyword].n_unique · columns[keyword].stats.one_word_rate · columns[keyword].stats.len_min · columns[keyword].stats.len_max · columns[keyword].stats.len_median · columns[keyword].stats.len_mean · columns[keyword].stats.len_p95 · columns[symbol_count].n_unique · columns[symbol_count].stats.top_value · columns[symbol_count].stats.top_rate

Out[4]:

saturn.schema() · 2 columns

column kind n null% unique alerts
keyword text 6,181 0.0% 6,181 near_unique one_word
symbol_count categorical 6,181 0.0% 1 imbalance
Fig 1.
keyword · Distribution of keyword character lengths to see the spread from 2 up to 72 characters.
Show data table
Character-length distribution for keyword (mean: 14.530334897265815).
charscount
2 – 484
4 – 6531
6 – 7641
7 – 9374
9 – 11774
11 – 12696
12 – 14588
14 – 16268
16 – 18438
18 – 20395
20 – 21267
21 – 23132
23 – 25223
25 – 26172
26 – 28142
28 – 3061
30 – 3296
32 – 3462
34 – 3556
35 – 3726
37 – 3941
39 – 4024
40 – 4226
42 – 4414
44 – 4610
46 – 489
48 – 495
49 – 513
51 – 536
53 – 543
54 – 560
56 – 583
58 – 602
60 – 621
62 – 636
63 – 650
65 – 670
67 – 680
68 – 701
70 – 721
Fig 2.
keyword · Histogram view of keyword lengths to spot the typical range around the median of 12.
Show data table
Character-length distribution for keyword (mean: 14.530334897265815).
charscount
2 – 484
4 – 6531
6 – 7641
7 – 9374
9 – 11774
11 – 12696
12 – 14588
14 – 16268
16 – 18438
18 – 20395
20 – 21267
21 – 23132
23 – 25223
25 – 26172
26 – 28142
28 – 3061
30 – 3296
32 – 3462
34 – 3556
35 – 3726
37 – 3941
39 – 4024
40 – 4226
42 – 4414
44 – 4610
46 – 489
48 – 495
49 – 513
51 – 536
53 – 543
54 – 560
56 – 583
58 – 602
60 – 621
62 – 636
63 – 650
65 – 670
67 – 680
68 – 701
70 – 721
Fig 3.
symbol_count · Confirms that symbol_count is a constant single category ('1') with no variation.
Show data table
Top values for symbol_count (1 unique shown, of 1 total).
valuecountshare
16181100.0%
Fig 4.
Per-column null rate across the corpus. Columns are ordered by input position.
Show data table
Per-column null rate across the corpus.
columnkindnull %
keywordtext0.0%
symbol_countcategorical0.0%

keyword text identifier

This column is a single-word keyword or concept tag, with every one of the 6181 rows holding a unique value (n_unique = 6181, duplicate_rate = 0.0, one_word_rate = 1.0). Tokens are short (len_mean 14.5, len_median 12) and many are compound forms joined by underscores like 'tangerine_clementine_mandarin' or 'cns_injury', suggesting a controlled vocabulary of concept labels rather than free text. The fully unique vocabulary means it behaves like an identifier for distinct concepts, not a categorical feature.

Treatment: Treat as a concept key; split underscore-joined tokens and embed if semantic similarity is needed, otherwise leave out of modelling.

anthropic:claude-opus-4-7 · confidence high
Out[10]:

saturn.columns["keyword"].stats

statvalue
n6,181
nulls0 (0.0%)
unique6,181
len_min 2
len_max 72
len_mean 14.53
len_median 12
len_p95 31
word_mean 1
word_median 1
n_empty 0
n_duplicates 0
duplicate_rate 0
vocab_size 6,181
readability_flesch_mean -75.9
emoji_rate 0
url_rate 0
one_word_rate 1
allcaps_rate 0
boilerplate_rate 0
alert: near_unique100.0% of rows are unique strings
alert: one_word100.0% rows are a single word
Fig 5.
Character-length distribution for keyword.
Show data table
Character-length distribution for keyword (mean: 14.530334897265815).
charscount
2 – 484
4 – 6531
6 – 7641
7 – 9374
9 – 11774
11 – 12696
12 – 14588
14 – 16268
16 – 18438
18 – 20395
20 – 21267
21 – 23132
23 – 25223
25 – 26172
26 – 28142
28 – 3061
30 – 3296
32 – 3462
34 – 3556
35 – 3726
37 – 3941
39 – 4024
40 – 4226
42 – 4414
44 – 4610
46 – 489
48 – 495
49 – 513
51 – 536
53 – 543
54 – 560
56 – 583
58 – 602
60 – 621
62 – 636
63 – 650
65 – 670
67 – 680
68 – 701
70 – 721

symbol_count categorical metadata

This column records a symbol count, but every one of the 6181 rows holds the value "1" (top_rate 1.0, cardinality 1, entropy 0). It carries no information and was flagged for imbalance. There are no nulls, just a single constant.

Treatment: Drop; constant column with zero entropy.

anthropic:claude-opus-4-7 · confidence high
Out[13]:

saturn.columns["symbol_count"].stats

statvalue
n6,181
nulls0 (0.0%)
unique1
top_value 1
top_rate 1
cardinality 1
entropy 0
entropy_ratio 0
alert: imbalancetop value is 100.0% of rows
Fig 6.
Top values for symbol_count.
Show data table
Top values for symbol_count (1 unique shown, of 1 total).
valuecountshare
16181100.0%

How to cite

click to copy

BibTeX
@misc{saturn-blissapi-2026,
  author       = {Steuber, Luke},
  title        = {Saturn reading: blissapi},
  year         ={2026},
  howpublished = {\url{https://dr.eamer.dev/saturn/view/blissapi}},
  note         = {Profiled with saturn-dissect v0.2.0, prompt saturn-insight-v2, model anthropic:claude-opus-4-7},
}
APA
Steuber, L. (2026). Saturn reading: blissapi. Source: /home/coolhand/data/blissapi.db. Profiled with saturn-dissect v0.2.0 (saturn-insight-v2, anthropic:claude-opus-4-7). Retrieved from https://dr.eamer.dev/saturn/view/blissapi