We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 073a335 commit cb9c94bCopy full SHA for cb9c94b
src/stagpy/plates.py
@@ -438,7 +438,7 @@ def cmd(conf: Config) -> None:
438
limits.sort()
439
plate_sizes = np.diff(limits, append=2 * np.pi + limits[0])
440
fig, axis = plt.subplots()
441
- axis.hist(plate_sizes, 10, (0, np.pi))
+ axis.hist(plate_sizes, bins=10, range=(0, np.pi))
442
axis.set_ylabel("Number of plates")
443
axis.set_xlabel(r"$\phi$-span")
444
saveplot(conf, fig, "plates_size_distribution", step.isnap)
0 commit comments