I am using MathNet library to compute some statistics e.g.. median, min, max. I computed some histogram data using this code:
var histogram = new Histogram(data, numberOfBuckets);
What does the bucket number mean? Is it a probability which can be acquired? How can be the output of histogram
which contain buckets processed to plot histogram chart? I think this output is really specific for plotting chart, e.g. in zedgraph
. Buckets in histogram
contains vector of buckets which looks like this: [1;1,4]=1
.