Click or drag to resize
Accord.NET (logo)

HistogramInclusiveUpperBound Property

Gets or sets a value indicating whether the last bin should have an inclusive upper bound. Default is true.

Namespace:  Accord.Statistics.Visualizations
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public bool InclusiveUpperBound { get; set; }
Request Example View Source

Property Value

Type: Boolean
true if the last bin should have an inclusive upper bound; false otherwise.
Remarks
If set to false, the last bin's range will be defined as Edge[i] <= x < Edge[i+1]. If set to true, the last bin will have an inclusive upper bound and be defined as Edge[i] <= x <= Edge[i+1] instead.
See Also