We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f767a76 commit 760812aCopy full SHA for 760812a
1 file changed
galleries/examples/statistics/histogram_bihistogram.py
@@ -28,7 +28,8 @@
28
29
# Use a constant bin width to make the two histograms easier to compare visually
30
bin_width = 0.25
31
-bins=np.arange(np.min([dataset1, dataset2]), np.max([dataset1, dataset2]) + bin_width, bin_width)
+bins = np.arange(np.min([dataset1, dataset2]),
32
+ np.max([dataset1, dataset2]) + bin_width, bin_width)
33
34
fig, ax = plt.subplots()
35
0 commit comments