Skip to content

plots

plots

CPU plotting helpers with minimalist Seaborn styling following jemoka.com/design.

line(data: Any = None, **kwargs: Any) -> Figure

Draw observations as lines; no implicit averaging or confidence band.

scatter(data: Any = None, **kwargs: Any) -> Figure

Draw points without outlines; accepts Seaborn x/y/hue arguments.

heatmap(data: Any, **kwargs: Any) -> Figure

Draw a continuous matrix without cell borders; override cmap as needed.

bar(data: Any = None, *, labels: bool = True, fmt: str = '.3g', **kwargs: Any) -> Figure

Draw bars with direct value labels, headroom, and no automatic error bars.