Class Median
- java.lang.Object
-
- org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
-
- org.apache.commons.math.stat.descriptive.rank.Percentile
-
- org.apache.commons.math.stat.descriptive.rank.Median
-
- All Implemented Interfaces:
Serializable
,UnivariateStatistic
public class Median extends Percentile implements Serializable
Returns the median of the available values. This is the same as the 50th percentile. SeePercentile
for a description of the algorithm used.Note that this implementation is not synchronized. If multiple threads access an instance of this class concurrently, and at least one of the threads invokes the
increment()
orclear()
method, it must be synchronized externally.- See Also:
- Serialized Form
-
-
Method Summary
-
Methods inherited from class org.apache.commons.math.stat.descriptive.rank.Percentile
copy, copy, evaluate, evaluate, evaluate, evaluate, getQuantile, setData, setData, setQuantile
-
Methods inherited from class org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
evaluate, evaluate, getData
-
-
-
-
Constructor Detail
-
Median
public Median()
Default constructor.
-
Median
public Median(Median original)
Copy constructor, creates a newMedian
identical to theoriginal
- Parameters:
original
- theMedian
instance to copy
-
-