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 1512544 commit 266b517Copy full SHA for 266b517
src/napari_matplotlib/histogram.py
@@ -55,7 +55,7 @@ def draw(self) -> None:
55
# whole cube into memory.
56
if data.dtype.kind == "i":
57
# Make sure integer data types have integer sized bins
58
- step = (np.max(data) - np.min(data)) // 100
+ step = (np.max(data) - np.min(data)) // 100
59
bins = np.arange(np.min(data), np.max(data) + step, step)
60
else:
61
bins = np.linspace(np.min(data), np.max(data), 100)
0 commit comments