plots_1d.hist() changed from an interpolating line, drawn between the histogram points (using pyplot.plot()), to a step plot, flat across the width of each bin (using pyplot.step()). With that change it sees to me that plots_1d.histstep() has become superseded by plots_1d.hist(). I haven't removed it yet, but if agreed it should be done in the next version.
While currently plots_1d.hist() cover step plots, it does not produce filled steps and/or bars, so there is still a place for plots_1d.histstep(). It may be better to rename the latter though.
plots_1d.hist()
changed from an interpolating line, drawn between the histogram points (usingpyplot.plot()
), to a step plot, flat across the width of each bin (usingpyplot.step()
). With that change it sees to me thatplots_1d.histstep()
has become superseded byplots_1d.hist()
. I haven't removed it yet, but if agreed it should be done in the next version.