Enum BinningMode
- Namespace
- LinqStatistics
- Assembly
- LinqStatistics.dll
Controls how the range of the bins are determined
public enum BinningMode
Fields
ExpandRange = 2
The total range will be expanded such that the min is less then the sequence min and max is greater then the sequence max The number of bins will be equal to (max - min) / (binCount - 1) in essence adding an extra bin and shrinking the bin size
MaxValueInclusive = 1
The minimum will be the sequnce min and the maximxum equal to sequence max The last bin will max inclusive instead of exclusive
Unbounded = 0
The minimum will be equal to the sequence min and the maximum equal to infinity