I am currently looking for a way to create a histogram out of a lot of simulated data I have created.
Basically the application runs a full Monte Carlo Simulation and I would like to present a histogram of the Results. I have those results in a module with the "Simulations" list (lets assume it is all in one line item).
What is the easiest way to get a histogram (ideally with a dynamic amount of buckets) of these 500.000 values?
I was thinking of creating a list (dynamically) and then creating another module to count the occurrences. However this would be really tedious and could **** performance. Any other ideas?