Skip to content

Commit

Permalink
Merge pull request #564 from eyyarbasi/dev_eyy
Browse files Browse the repository at this point in the history
legend subscript fix for num_vars>10
  • Loading branch information
ConnectedSystems committed Apr 9, 2023
2 parents e5cfb66 + b313bb6 commit 1cd3fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SALib/plotting/hdmr.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def plot(Si):
ax.plot(X[last_bootstrap, i], Y[last_bootstrap], "r.")
ax.plot(X[last_bootstrap, i], np.mean(Em["f0"]) + Y_em[:, i], "k.")
ax.legend(
[r"$\widetilde{Y}$", "$f_" + str(i + 1) + "$"],
[r"$\widetilde{Y}$", "$f_{" + str(i + 1) + "}$"],
loc="upper left",
bbox_to_anchor=(1.04, 1.0),
)
Expand Down

0 comments on commit 1cd3fa0

Please sign in to comment.