[docs]classMETRIC_TYPE(Enum):""" The type of a metric, for determining which metrics can be plotted against one another. """OTHER="OTHER"PER_TIME="PER_TIME"PER_AGENT="PER_AGENT"
[docs]classPLOT_TYPE(Enum):""" The type of a plot. """SCATTER="scatter"HISTOGRAM="histogram"
[docs]classSCATTER_PLOT_MODE(Enum):""" Mode for how to draw points on a scatter plot. """MARKERS="markers"LINES="lines"
[docs]classPLOT_AXIS(Enum):""" Axes for a 2D plot. """X="x"Y="y"