Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cfdeb13
puting the log scale
bruAristimunha Oct 1, 2025
0f01b5e
including title
bruAristimunha Oct 1, 2025
4e5c14b
updating the prepare table
bruAristimunha Oct 1, 2025
ea74718
fix the line plot
bruAristimunha Oct 1, 2025
6823dc9
updating
bruAristimunha Oct 1, 2025
33bfd07
improving the kde
bruAristimunha Oct 1, 2025
9270f92
updating the kde
bruAristimunha Oct 1, 2025
fda2ac5
first iteration
bruAristimunha Oct 1, 2025
6504b71
updating one label
bruAristimunha Oct 1, 2025
4deda6c
updating the helper
bruAristimunha Oct 1, 2025
7728067
unknown instead of ?
bruAristimunha Oct 1, 2025
a614c18
updating with some stable version
bruAristimunha Oct 1, 2025
1fa1e3c
fixing the colours encoding
bruAristimunha Oct 1, 2025
2863f9a
implement more details
bruAristimunha Oct 1, 2025
b5d9151
updating the title
bruAristimunha Oct 1, 2025
3fa8f83
more improve
bruAristimunha Oct 1, 2025
980ee68
updating label side
bruAristimunha Oct 1, 2025
da80138
commit the files
bruAristimunha Oct 1, 2025
9a9ec14
fixing issue
bruAristimunha Oct 1, 2025
4b36cb6
usa english
bruAristimunha Oct 1, 2025
559348c
refactoring the plot
bruAristimunha Oct 1, 2025
73a54b5
fixing small details
bruAristimunha Oct 1, 2025
c7ea669
improve this
bruAristimunha Oct 1, 2025
25d36fa
updating the title
bruAristimunha Oct 1, 2025
4c4fdcb
removing the css
bruAristimunha Oct 1, 2025
7d6a6a8
fixing the plot sankey
bruAristimunha Oct 1, 2025
ae7abad
renaming to better categorization
bruAristimunha Oct 1, 2025
2102e2c
small note
bruAristimunha Oct 1, 2025
ad00d26
updating the table
bruAristimunha Oct 1, 2025
638bd3d
removing relative path
bruAristimunha Oct 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/plot_dataset/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""Plot generation utilities for EEGDash documentation."""

from .bubble import generate_dataset_bubble # noqa: F401
from .colours import ( # noqa: F401
CANONICAL_MAP,
COLUMN_COLOR_MAPS,
MODALITY_COLOR_MAP,
PATHOLOGY_COLOR_MAP,
TYPE_COLOR_MAP,
hex_to_rgba,
)
from .plot_sankey import generate_dataset_sankey # noqa: F401
from .ridgeline import generate_modality_ridgeline # noqa: F401
Loading