2023-07-04 13:11:06 +01:00
|
|
|
"""Utility to generate plots of sessions metrics after PrimAITE."""
|
2023-07-05 09:19:58 +01:00
|
|
|
from enum import Enum
|
2023-06-30 09:08:13 +01:00
|
|
|
|
2023-07-05 09:22:49 +01:00
|
|
|
|
2023-06-30 09:08:13 +01:00
|
|
|
class PlotlyTemplate(Enum):
|
|
|
|
|
"""The built-in plotly templates."""
|
|
|
|
|
|
|
|
|
|
PLOTLY = "plotly"
|
|
|
|
|
PLOTLY_WHITE = "plotly_white"
|
|
|
|
|
PLOTLY_DARK = "plotly_dark"
|
|
|
|
|
GGPLOT2 = "ggplot2"
|
|
|
|
|
SEABORN = "seaborn"
|
|
|
|
|
SIMPLE_WHITE = "simple_white"
|
|
|
|
|
NONE = "none"
|