cleanup(plotting): removed commented code
This commit is contained in:
parent
2493c8d2b3
commit
1ddd065ef5
1 changed files with 0 additions and 30 deletions
|
|
@ -173,20 +173,6 @@ def plot_grouped_bar(
|
|||
plt.FuncFormatter(lambda x, _: f"{x:.2f}" if abs(x) < 10 else f"{x:.0f}")
|
||||
)
|
||||
|
||||
# _add_square_placeholders(ax, x_ticks_pos, [f"{m} Arms" for m in morphologies])
|
||||
|
||||
# Add custom legend entry for best performer
|
||||
# ax.plot(
|
||||
# [],
|
||||
# [],
|
||||
# marker=BEST_PERFORMER_MARKER,
|
||||
# color="w",
|
||||
# markerfacecolor=BEST_PERFORMER_COLOR,
|
||||
# markersize=15,
|
||||
# label="Best Performance",
|
||||
# ls="",
|
||||
# )
|
||||
|
||||
ax.legend(**LEGEND_KWARGS, ncol=len(architectures))
|
||||
ax.set_facecolor("white")
|
||||
fig.patch.set_facecolor("white")
|
||||
|
|
@ -307,22 +293,6 @@ def plot_grouped_bar_alt(
|
|||
plt.FuncFormatter(lambda x, _: f"{x:.2f}" if abs(x) < 10 else f"{x:.0f}")
|
||||
)
|
||||
|
||||
# In this alt plot, placeholders might be per architecture
|
||||
# _add_square_placeholders(
|
||||
# ax, x_indices, [arch.replace("_", "\n").title() for arch in architectures]
|
||||
# )
|
||||
|
||||
# ax.plot(
|
||||
# [],
|
||||
# [],
|
||||
# marker=BEST_PERFORMER_MARKER,
|
||||
# color="w",
|
||||
# markerfacecolor=BEST_PERFORMER_COLOR,
|
||||
# markersize=15,
|
||||
# label="Best Performance",
|
||||
# ls="",
|
||||
# )
|
||||
|
||||
ax.legend(**LEGEND_KWARGS, ncol=len(morphologies))
|
||||
ax.set_facecolor("white")
|
||||
fig.patch.set_facecolor("white")
|
||||
|
|
|
|||
Reference in a new issue