What kind of plot is this one? How to build one of these? This is a dataset with bins with different sizes. 
Plot taken from http://go.warwick.ac.uk/wrap/77362
What kind of plot is this one? How to build one of these? This is a dataset with bins with different sizes. 
Plot taken from http://go.warwick.ac.uk/wrap/77362
I would go about it this way:
Create some data:
data = Table[1 10^4 + -1 10^6 E^(-0.594 t) Sin[-0.2 t], {t, 0, 2 \[Pi], 0.1}];
create somes lines:
lines = Table[InfiniteLine[{ {0, Log[1 10^i]}, {1, Log[1 10^i]}}], {i, 1, 10}]
Plot:
ListLogPlot[data, InterpolationOrder -> 0, Joined -> True, Frame -> True, FrameStyle -> Black, Epilog -> {{Black, Dashed, lines}} ]
ListStepPlot– Bob Hanlon May 28 '22 at 22:09