Skip to content

Commit c64b213

Browse files
committed
scott for calculating bins
1 parent b03fedc commit c64b213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vse_sync_pp/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _plot_scatter(self, ax):
5252
def _plot_hist(self, ax):
5353
counts, bins = np.histogram(
5454
np.array(self._y_data, dtype=float),
55-
bins='fd'
55+
bins='scott'
5656
)
5757
ax.hist(bins[:-1], bins, weights=counts)
5858
self._set_yscale(ax)

0 commit comments

Comments
 (0)