|
IUnivariateDistributionGetRange Method
|
Gets the distribution range within a given percentile.
Namespace:
Accord.Statistics.Distributions
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax DoubleRange GetRange(
double percentile
)
Function GetRange (
percentile As Double
) As DoubleRange
Request Example
View SourceParameters
- percentile
- Type: SystemDouble
The percentile at which the distribution ranges will be returned.
Field Value
Type:
DoubleRangeA
DoubleRange object containing the minimum value
for the distribution value, and the third quartile (Q2) as the maximum.
Remarks
If
0.25 is passed as the
percentile argument,
this function returns the same as the
Quartiles function.
See Also