Skip to content
Snippets Groups Projects
Commit 8eb979fd authored by Dennis Noll's avatar Dennis Noll
Browse files

[plotting] lbn: label

parent a8175b77
No related branches found
No related tags found
No related merge requests found
...@@ -441,9 +441,9 @@ def figure_lbn_weights( ...@@ -441,9 +441,9 @@ def figure_lbn_weights(
# create and style the plot # create and style the plot
ax.imshow(weights, cmap=cmap, vmin=0, vmax=100, origin="lower") ax.imshow(weights, cmap=cmap, vmin=0, vmax=100, origin="lower")
ax.set_title("{} weights".format(name), fontdict={"fontsize": 12}) ax.set_title(f"{name} weights", fontdict={"fontsize": 12})
ax.set_xlabel("LBN particle number") ax.set_xlabel(f"LBN {name} number")
ax.set_xticks(list(range(weights.shape[1]))) ax.set_xticks(list(range(weights.shape[1])))
ax.set_ylabel("Input particle") ax.set_ylabel("Input particle")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment