Class PSquarePercentile
java.lang.Object
org.hipparchus.stat.descriptive.AbstractStorelessUnivariateStatistic
org.hipparchus.stat.descriptive.rank.PSquarePercentile
- All Implemented Interfaces:
Serializable,DoubleConsumer,StorelessUnivariateStatistic,UnivariateStatistic,MathArrays.Function
public class PSquarePercentile
extends AbstractStorelessUnivariateStatistic
implements StorelessUnivariateStatistic, Serializable
A
StorelessUnivariateStatistic estimating percentiles using the
P2
Algorithm as explained by Raj
Jain and Imrich Chlamtac in
P2 Algorithm
for Dynamic Calculation of Quantiles and Histogram Without Storing
Observations.
Note: This implementation is not synchronized and produces an approximate
result. For small samples, where data can be stored and processed in memory,
Percentile should be used.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static interfaceAn interface that encapsulates abstractions of the P-square algorithm markers as is explained in the original works. -
Constructor Summary
ConstructorsConstructorDescriptionPSquarePercentile(double p) Constructs a PSquarePercentile with the specific percentile value.PSquarePercentile(PSquarePercentile original) Copy constructor, creates a newPSquarePercentileidentical to theoriginal. -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears the internal state of the Statisticcopy()Returns a copy of the statistic with the same internal state.booleanReturns true iffois aPSquarePercentilereturning the same values as this forgetResult()andgetN()and also having equal markerslonggetN()Returns the number of values that have been added.doubleGet quantile estimated by this statistic.doubleReturns the current value of the Statistic.inthashCode()Returns hash code based on getResult() and getN().voidincrement(double observation) Updates the internal state of the statistic to reflect the addition of the new value.newMarkers(List<Double> initialFive, double p) A creation method to build Markersdoublequantile()Returns the quantile estimated by this statistic in the range [0.0-1.0]toString()Returns a string containing the last observation, the current estimate of the quantile and all markers.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.function.DoubleConsumer
andThenMethods inherited from interface org.hipparchus.stat.descriptive.StorelessUnivariateStatistic
accept, evaluate, incrementAll, incrementAllMethods inherited from interface org.hipparchus.stat.descriptive.UnivariateStatistic
evaluate
-
Constructor Details
-
PSquarePercentile
public PSquarePercentile(double p) Constructs a PSquarePercentile with the specific percentile value.- Parameters:
p- the percentile- Throws:
MathIllegalArgumentException- if p is not greater than 0 and less than or equal to 100
-
PSquarePercentile
Copy constructor, creates a newPSquarePercentileidentical to theoriginal.- Parameters:
original- thePSquarePercentileinstance to copy- Throws:
NullArgumentException- if original is null
-
-
Method Details
-
hashCode
public int hashCode()Returns hash code based on getResult() and getN().- Overrides:
hashCodein classAbstractStorelessUnivariateStatistic- Returns:
- hash code
-
equals
Returns true iffois aPSquarePercentilereturning the same values as this forgetResult()andgetN()and also having equal markers- Overrides:
equalsin classAbstractStorelessUnivariateStatistic- Parameters:
o- object to compare- Returns:
- true if
ois aPSquarePercentilewith equivalent internal state
-
increment
public void increment(double observation) Updates the internal state of the statistic to reflect the addition of the new value.The internal state updated due to the new value in this context is basically of the marker positions and computation of the approximate quantile.- Specified by:
incrementin interfaceStorelessUnivariateStatistic- Specified by:
incrementin classAbstractStorelessUnivariateStatistic- Parameters:
observation- the observation currently being added.
-
toString
Returns a string containing the last observation, the current estimate of the quantile and all markers.- Overrides:
toStringin classAbstractStorelessUnivariateStatistic- Returns:
- string representation of state data
-
getN
public long getN()Returns the number of values that have been added.- Specified by:
getNin interfaceStorelessUnivariateStatistic- Returns:
- the number of values.
-
copy
Returns a copy of the statistic with the same internal state.- Specified by:
copyin interfaceStorelessUnivariateStatistic- Specified by:
copyin interfaceUnivariateStatistic- Specified by:
copyin classAbstractStorelessUnivariateStatistic- Returns:
- a copy of the statistic
-
quantile
public double quantile()Returns the quantile estimated by this statistic in the range [0.0-1.0]- Returns:
- quantile estimated by
getResult()
-
clear
public void clear()Clears the internal state of the Statistic. This basically clears all the markers, the initialFive list and sets countOfObservations to 0.- Specified by:
clearin interfaceStorelessUnivariateStatistic- Specified by:
clearin classAbstractStorelessUnivariateStatistic
-
getResult
public double getResult()Returns the current value of the Statistic.- Specified by:
getResultin interfaceStorelessUnivariateStatistic- Specified by:
getResultin classAbstractStorelessUnivariateStatistic- Returns:
- value of the statistic,
Double.NaNif it has been cleared or just instantiated.
-
getQuantile
public double getQuantile()Get quantile estimated by this statistic.- Returns:
- the quantile estimated by this statistic
-
newMarkers
A creation method to build Markers- Parameters:
initialFive- list of initial five elementsp- the quantile desired- Returns:
- an instance of PSquareMarkers
-