I have a bunch of data that lends itself to plotting as a histogram, but for various reasons I can't really use the built-in Histogram function, and instead I have built binning code that returns output as a list of the form
{{bin1x,bin2x,...},{bin1value,bin2value,...}} which is effectively what I would expect as an output from HistogramList (if my data were suitable for Histogram) to begin with).
Is there a simple, built-in way to plot data in this format in a graphical way that matches the output of Histogram?
In essence, I am hoping for a function PlotLikeHistogram that will factorize Histogram as Histogram[data] ↔ PlotLikeHistogram[HistogramList[data]]. Is this a thing?