Is there a way to use `xray.DataArray` for histograms?
I mean something like [1] where bins can have variable width and it's possible to store and use the lower and upper edge of each bin.
As far as I can see this is not supported, a `DataArray` has just one label per item.
So I think `xray.DataArray` doesn't work for this application?
Before we go off and implement our own axis and histogram classes, I wanted to ask if you see some way to directly use or re-use part of xray?
Or is there some other Numpy-based Python package you're aware of that provides such a class?
For our applications we don't need indexing functionality on the axes, but handling dimensions by name is something we do want.
Thanks in advance for any tips!
Christoph