|
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; }
Public Property InclusiveUpperBound As Boolean
Get
Set
Request Example
View SourceProperty Value
Type:
Booleantrue 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