User story
As a user who visualizes 2d load histograms I need a convenient way to transform histograms to a data structure that I can feed into plotly.express.imshow or matplotlib.pyplot.hist2d. That is basically what demos/helper_function provides.
Requirements
Provide a convenient function that basically does hist.to_frame().stack(<x-axis-level).to_numpy()
User story
As a user who visualizes 2d load histograms I need a convenient way to transform histograms to a data structure that I can feed into
plotly.express.imshowormatplotlib.pyplot.hist2d. That is basically whatdemos/helper_functionprovides.Requirements
Provide a convenient function that basically does
hist.to_frame().stack(<x-axis-level).to_numpy()