|
UnivariateContinuousDistributionGetRange 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 DoubleRange GetRange(
double percentile
)
Public Overridable 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.
Implements
IUnivariateDistributionGetRange(Double)Remarks
If
0.25 is passed as the
percentile argument,
this function returns the same as the
Quartiles function.
See Also