remove plt.show() from logscale_hist
This commit is contained in:
parent
34a035927a
commit
487f01b0f8
1 changed files with 0 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue