Skip to content

Commit

Permalink
pre-commit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lee1043 committed Nov 21, 2023
1 parent eff9e7a commit 24c1e5e
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,10 @@ def parallel_coordinate_plot(
ax.set_title(title, fontsize=18)

if not legend_off:
#ax.legend(loc="upper center", ncol=6, bbox_to_anchor=(0.5, -0.14))
ax.legend(loc="upper center", ncol=legend_ncol, bbox_to_anchor=legend_bbox_to_anchor)
# ax.legend(loc="upper center", ncol=6, bbox_to_anchor=(0.5, -0.14))
ax.legend(
loc="upper center", ncol=legend_ncol, bbox_to_anchor=legend_bbox_to_anchor
)

if not logo_off:
fig, ax = add_logo(fig, ax, logo_rect)
Expand Down Expand Up @@ -401,7 +403,7 @@ def _data_transform(
else:
ymins = np.repeat(ymin, N)

ymeds = np.nanmedian(ys, axis=0) # median
ymeds = np.nanmedian(ys, axis=0) # median
ymean = np.nanmean(ys, axis=0) # mean

if vertical_center is not None:
Expand Down

0 comments on commit 24c1e5e

Please sign in to comment.