remove plt.show() from logscale_hist

This commit is contained in:
markus 2021-01-22 14:24:29 +01:00
parent 34a035927a
commit 487f01b0f8

View file

@ -243,7 +243,6 @@ def logscale_hist(x: typing.Iterable, bins: int) -> None:
logscale_bins = np.logspace(np.log10(bins[0]), np.log10(bins[-1]), len(bins))
plt.hist(x, bins=logscale_bins)
plt.xscale('log')
plt.show()
def print_qr_info(qr_values: np.ndarray) -> None: