The recent histogram method requires an already existing double array.
I started to think about a special method we could call it Rolling Histogram, or like Point by point Histogram as they call such things in LabVIEW (for example https://www.ni.com/docs/en-US/bundle/labview/page/ptbypt/prob_and_stat_vis_ptbypt.html, ) where we can Enqueue values, and the histogram bin counts are automatically refreshed at each iterations. We do not want to store the data array (would cause a memory leak on long term run), but only the counts for the bins.
What do you think?