1
Fork 0

feat(plotting): updated plots to not contain placeholder squares + updated colors

This commit is contained in:
Robin Meersman 2026-05-16 15:07:15 +02:00
parent fe7aecb62a
commit 708b061577
3 changed files with 35 additions and 30 deletions

View file

@ -6,7 +6,7 @@ import matplotlib.pyplot as plt
COLORS = {
"CENTRALIZED": "#0D567C", # Blue
"FULLY_CONNECTED": "#8C0E0F", # Reddish
"RING_LEVEL": "#FCB305", # Pale Yellow
"RING": "#FCB305", # Pale Yellow
}
@ -42,7 +42,7 @@ BEST_PERFORMER_COLOR = "#D4AF37" # Gold
# Centralized Legend Configuration
LEGEND_KWARGS = {
"loc": "upper center",
"bbox_to_anchor": (0.5, -0.5),
"bbox_to_anchor": (0.5, -0.12),
"frameon": False,
}