kuva scatter

Scatter plot of (x, y) point pairs. Supports multi-series coloring, trend lines, and log scale.

Input: any tabular file with two numeric columns.

FlagDefaultDescription
--x <COL>0X-axis column
--y <COL>1Y-axis column
--color-by <COL>Group by this column; each group gets a distinct color
--color <CSS>steelbluePoint color (single-series only)
--size <PX>3.0Point radius in pixels
--trendoffOverlay a linear trend line
--equationoffAnnotate with regression equation (requires --trend)
--correlationoffAnnotate with Pearson R² (requires --trend)
--legendoffShow legend
kuva scatter measurements.tsv --x time --y value --color steelblue

kuva scatter measurements.tsv --x time --y value \
    --color-by group --legend --title "Expression over time"

kuva scatter measurements.tsv --x time --y value \
    --trend --equation --correlation --log-y

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