We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2775605 + 4fcf262 commit 0b56d02Copy full SHA for 0b56d02
1 file changed
bashplotlib/histogram.py
@@ -82,7 +82,7 @@ def plot_hist(f, height=20.0, bincount=None, pch="o", colour="white", title="",
82
83
bins = list(calc_bins(n, min_val, max_val, bincount))
84
hist = {}
85
- for i in range(len(bings)):
+ for i in range(len(bins)):
86
hist[i] = 0
87
for number in read_numbers(f):
88
for i, b in enumerate(bins):
0 commit comments