Show list statistics

Show list statistics produces a 7-line report covering item count, unique count, duplicates (with up to 5 sample names), empty-line count, and length stats (average, shortest, longest). Same op as List analysis - alternative URL for the same report.

Input
Ready
Output
Live

A fixed 7-metric report

Lines are split and filtered. Blank / whitespace-only lines are counted separately as empty. Remaining lines are trimmed + lowercased for unique / duplicate detection, so `Apple` and `apple` merge. Length metrics use the trimmed item text.

Duplicate names: up to 5 sample duplicate values are listed in parentheses after the count. More than 5? A `+N more` suffix shows the overflow. Shortest and longest items include their character lengths in parentheses.

No options. For per-item frequencies, use Find most frequent. For case-sensitive analysis, pre-normalize with Uppercase or Lowercase.

How to use show list statistics

  1. 1Paste your list into the input panel
  2. 2Output is a 7-line report
  3. 3No options - the report is fixed
  4. 4For frequency tables use Find most frequent
  5. 5Same output as List analysis

Keyboard shortcuts

Drive ListShift without touching the mouse.

Shortcut Action
Ctrl ZUndo last input change
Ctrl Shift ZRedo
Ctrl Shift EnterToggle fullscreen focus on the editor
EscExit fullscreen
Ctrl KOpen the command palette to jump to any tool
Ctrl SSave current pipeline draft Plus
Ctrl PRun a saved pipeline Plus

What this tool actually does

Seven-metric report, no options.

Items count (non-empty)

Number of lines after dropping blank / whitespace-only rows.

Unique count

Values appearing exactly once. Case-insensitive, trim-aware.

Duplicates count with names

Values appearing 2+ times. Up to 5 sample names shown; overflow indicated as `+N more`.

Empty lines count

Blank or whitespace-only rows counted separately from the item total.

Length stats

Average length (1 decimal), shortest and longest items with character counts.

Worked example

Six lines with `apple` ×3, `banana` ×2, `cherry` ×1. `cherry` is the only unique; `apple` and `banana` are duplicates.

Input
apple
banana
apple
cherry
banana
apple
Output
Items: 6
Unique: 1
Duplicates: 2 (apple, banana)
Empty lines: 0
Average length: 5.3
Shortest: apple (5)
Longest: banana (6)

Behaviour reference

No options. These rules apply unconditionally.

Metric What it reports On the sample
Items Non-empty line count 6
Unique Values appearing exactly once 1 (just `cherry`)
Duplicates Values appearing 2+ times, up to 5 names 2 (apple, banana)
Empty lines Whitespace-only / blank count 0
Length stats Average, shortest, longest (trimmed) avg 5.3, shortest `apple` (5), longest `banana` (6)

FAQ

Is the duplicate count the number of distinct duplicate values or the number of duplicate rows?
Distinct values. `apple` appearing 3 times counts as one duplicate entry (with count 3). The count in the report is the number of distinct values that repeat.
Why is Unique smaller than I expected?
Unique counts values appearing *exactly once*. Items that repeat (even if only twice) are classified as duplicates, not uniques. For a total distinct count, add Unique + Duplicates.
Is comparison case-sensitive?
No - values are lowercased and trimmed before tallying. No option to override.
How is this different from List analysis?
Same op, same output. List analysis is the alternative URL.
What if the list has more than 5 duplicate values?
The first 5 duplicate values are shown in parentheses; a `+N more` suffix indicates how many additional duplicate values exist.