I need to generate bins for the purposes of calculating a histogram. Language is C#. Basically I need to take in an array of decimal numbers and generate a histogram plot out of those.
Haven't been able to find a decent library to do this outright so now I'm just looking for either a library or an algorithm to help me do the binning of the data.
So...
- Are there any C# libraries out there that will take in an array of decimal data and output a binned histogram?
- Is there generic algorithm for building the bins to be used in generated a histogram?