Skip to content
Snippets Groups Projects
Commit 143cc951 authored by Andi Gerken's avatar Andi Gerken
Browse files

Fixed iid follow

parent 0cfdb639
Branches
Tags
No related merge requests found
......@@ -539,14 +539,17 @@ def evaluate_follow_iid(
legend=True,
joint_kws={"bins": 50},
)
grid.fig.set_figwidth(9)
grid.fig.set_figheight(6)
grid.fig.subplots_adjust(top=0.9)
# grid.fig.set_figwidth(9)
# grid.fig.set_figheight(6)
# grid.fig.subplots_adjust(top=0.9)
grids.append(grid)
fig = plt.figure(figsize=(8 * len(grids), 8))
# This is neccessary because joint plot does not receive an ax object.
# It creates issues with too many plots though
# Created an issue
fig = plt.figure(figsize=(6 * len(grids), 6))
fig.suptitle("follow/iid: from left to right: " + str(labels), fontsize=16)
fig.suptitle(f"follow/iid: from left to right:\n{', '.join(labels)}", fontsize=12)
gs = gridspec.GridSpec(1, len(grids))
for i in range(len(grids)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment