|
UnivariateDiscreteDistributionGetRange Method
|
Gets the distribution range within a given percentile.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public virtual IntRange GetRange(
double percentile
)
Public Overridable Function GetRange (
percentile As Double
) As IntRange
Request Example
View SourceParameters
- percentile
- Type: SystemDouble
The percentile at which the distribution ranges will be returned.
Field Value
Type:
IntRangeA
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