Skip to content

Mark

This page contains classes defined in hakowan.mark module.

Curve = Mark.Curve module-attribute

Curve is a mark for visualizing data as a curve.

Point = Mark.Point module-attribute

Point is a mark for visualizing data as a point.

Surface = Mark.Surface module-attribute

Surface is a mark for visualizing data as a surface.

Mark

Bases: Enum

Mark represents the way data is visualized.

Source code in hakowan/grammar/mark/mark.py
4
5
6
7
8
9
class Mark(Enum):
    """Mark represents the way data is visualized."""

    Point = 0
    Curve = 1
    Surface = 2