This package computes a histogram of values in either a []float32 or []float64 array: a count of number of values within different bins of value ranges.
F32 or F64 computes the raw counts into a corresponding float array, and F32Table or F64Table construct an table.Table with Value and Count columns, suitable for plotting.
The Value column represents the min value for each bin, with the max being, the value of the next bin, or the max if at the end.
F32 generates a histogram of counts of values within given
number of bins and min / max range. hist vals is sized to nBins.
if value is < min or > max it is ignored.
F32Table generates an table with a histogram of counts of values within given
number of bins and min / max range. The table has columns: Value, Count
if value is < min or > max it is ignored.
The Value column represents the min value for each bin, with the max being
the value of the next bin, or the max if at the end.
F64 generates a histogram of counts of values within given
number of bins and min / max range. hist vals is sized to nBins.
if value is < min or > max it is ignored.
F64Table generates an table with a histogram of counts of values within given
number of bins and min / max range. The table has columns: Value, Count
if value is < min or > max it is ignored.
The Value column represents the min value for each bin, with the max being
the value of the next bin, or the max if at the end.