kuva histogram

Frequency histogram from one or more numeric columns.

Input: one or more numeric columns per row.

FlagDefaultDescription
--value-col <COL>0Value column (single-column mode)
--y <COL>[,<COL>…]Comma-separated columns; overlays one histogram per column over a shared x-range (overrides --value-col)
--color <CSS>steelblueBar fill color (single-column mode)
--bins <N>10Number of bins
--normalizeoffNormalize to probability density (area = 1)
--legendoffShow a legend entry for each series (multi-column mode)
kuva histogram histogram.tsv --value-col value --bins 30

kuva histogram histogram.tsv --bins 20 --normalize \
    --title "Expression distribution" --y-label "Density"

# overlay distributions of two columns
kuva histogram data.tsv --y col_a,col_b --bins 20 --legend

See also: Shared flags — output, appearance, axes, log scale.