Skip to content
1 change: 1 addition & 0 deletions docs/plot_dataset/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
)
from .plot_sankey import generate_dataset_sankey # noqa: F401
from .ridgeline import generate_modality_ridgeline # noqa: F401
from .treemap import generate_dataset_treemap # noqa: F401
28 changes: 28 additions & 0 deletions docs/plot_dataset/colours.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,34 @@
"Unknown": "#94a3b8",
}

MODALITY_EMOJI = {
"Visual": "👁️",
"Auditory": "👂",
"Sleep": "🌙",
"Multisensory": "🧩",
"Tactile": "✋",
"Motor": "🏃",
"Resting State": "🧘",
"Rest": "🧘",
"Other": "🧭",
"Unknown": "❔",
}

PATHOLOGY_PASTEL_OVERRIDES = {
"Healthy": "#bbf7d0",
"Unknown": "#d0d7df",
"Dementia": "#fcd4d4",
"Schizophrenia": "#f9d0e7",
"Psychosis": "#f9d0e7",
"Epilepsy": "#f9d7c4",
"Parkinson's": "#f8c8c8",
"TBI": "#f9cabd",
"Surgery": "#f7d9b8",
"Other": "#f8cbdc",
"Clinical": "#f8d0d0",
}


TYPE_COLOR_MAP = {
"Perception": "#3b82f6",
"Decision-making": "#eab308",
Expand Down
Loading