We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d879ba0 commit 2c0818aCopy full SHA for 2c0818a
1 file changed
src/simdec/decomposition.py
@@ -191,11 +191,11 @@ def statistic_(inputs):
191
gaps = np.diff(uniq)
192
margin = 0.1 * np.min(gaps)
193
194
- bin_edges_ = np.concatenate(
+ edges = np.concatenate(
195
([uniq[0] - margin], uniq[:-1] + margin, [uniq[-1] + margin])
196
).astype(float)
197
198
- bin_edges.append(bin_edges_)
+ bin_edges.append(edges)
199
continue
200
201
# Default: equal-number-of-samples bins
0 commit comments