java.lang.Object
io.jenetics.stat.LongMomentStatistics
- All Implemented Interfaces:
IntConsumer
,LongConsumer
A state object for collecting statistics such as count, min, max, sum, mean,
variance, skewness and kurtosis. The design of this class is similar to the
design of the
For a non-long stream, you can use a collector:
LongSummaryStatistics
class.
This class is designed to work with (though does not require) streams. For example, you can compute moments-statistics on a stream of longs with:
final LongStream stream = ...
final LongMomentStatistics statistics = stream.collect(
LongMomentStatistics::new,
LongMomentStatistics::accept,
LongMomentStatistics::combine
);
final Stream<SomeObject> stream = ...
final LongMomentStatistics statistics = stream
.collect(toLongMomentStatistics(v -> v.longValue()));
- Since:
- 3.0
- Version:
- 6.0
- See Also:
- Implementation Note:
- This implementation is not thread safe. However, it is safe to use
toLongMomentStatistics(ToLongFunction)
on a parallel stream, because the parallel implementation ofStream.collect()
provides the necessary partitioning, isolation, and merging of results for safe and efficient parallel execution.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(int value) Records a new value into the moment informationvoid
accept
(long value) Records a new value into the moment informationcombine
(LongMomentStatistics other) Combine twoLongMoments
statistic objects.long
count()
Returns the count of values recorded.double
kurtosis()
Return the kurtosis of values recorded, orDouble.NaN
if less than four values have been recorded.long
max()
Return the maximum value recorded, orLong.MIN_VALUE
if no values have been recorded.double
mean()
Return the arithmetic mean of values recorded, orDouble.NaN
if no values have been recorded.long
min()
Return the minimum value recorded, orLong.MAX_VALUE
if no values have been recorded.boolean
sameState
(LongMomentStatistics other) Compares the state of twoLongMomentStatistics
objects.double
skewness()
Return the skewness of values recorded, orDouble.NaN
if less than two values have been recorded.long
sum()
Return the sum of values recorded, or zero if no values have been recorded.Return aLongMoments
object from the current statistics,static <T> Collector<T,
?, LongMomentStatistics> toLongMomentStatistics
(ToLongFunction<? super T> mapper) Return aCollector
which applies a long-producing mapping function to each input element, and returns moments-statistics for the resulting values.toString()
double
variance()
Return the variance of values recorded, orDouble.NaN
if no values have been recorded.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.function.IntConsumer
andThen
Methods inherited from interface java.util.function.LongConsumer
andThen
-
Constructor Details
-
LongMomentStatistics
public LongMomentStatistics()Create an empty moments object.
-
-
Method Details
-
accept
Records a new value into the moment information- Specified by:
accept
in interfaceLongConsumer
- Parameters:
value
- the inputvalue
-
accept
Records a new value into the moment information- Specified by:
accept
in interfaceIntConsumer
- Parameters:
value
- the inputvalue
-
combine
Combine twoLongMoments
statistic objects.- Parameters:
other
- the otherLongMoments
statistics to combine withthis
one.- Returns:
this
statistics object- Throws:
NullPointerException
- if the other statistical summary isnull
.
-
min
Return the minimum value recorded, orLong.MAX_VALUE
if no values have been recorded.- Returns:
- the minimum value, or
Long.MAX_VALUE
if none
-
max
Return the maximum value recorded, orLong.MIN_VALUE
if no values have been recorded.- Returns:
- the maximum value, or
Long.MIN_VALUE
if none
-
sum
Return the sum of values recorded, or zero if no values have been recorded.- Returns:
- the sum of values, or zero if none
-
sameState
Compares the state of twoLongMomentStatistics
objects. This is a replacement for theObject.equals(Object)
which is not advisable to implement for this mutable object. If two objects have the same state, it has still the same state when updated with the same value.final LongMomentStatistics lms1 = ...; final LongMomentStatistics lms2 = ...; if (lms1.sameState(lms2)) { final long value = random.nextInt(1_000_000); lms1.accept(value); lms2.accept(value); assert lms1.sameState(lms2); assert lms2.sameState(lms1); assert lms1.sameState(lms1); }
- Parameters:
other
- the other object for the test- Returns:
true
thethis
and theother
objects have the same state,false
otherwise- Since:
- 3.7
-
toLongMoments
Return aLongMoments
object from the current statistics,- Returns:
- a
LongMoments
object from the current statistics - Since:
- 3.9
-
toString
-
toLongMomentStatistics
public static <T> Collector<T,?, toLongMomentStatisticsLongMomentStatistics> (ToLongFunction<? super T> mapper) Return aCollector
which applies a long-producing mapping function to each input element, and returns moments-statistics for the resulting values.final Stream<SomeObject> stream = ... final LongMomentStatistics statistics = stream .collect(toLongMomentStatistics(v -> v.longValue()));
- Type Parameters:
T
- the type of the input elements- Parameters:
mapper
- a mapping function to apply to each element- Returns:
- a
Collector
implementing the moments-statistics reduction - Throws:
NullPointerException
- if the givenmapper
isnull
-
count
public long count()Returns the count of values recorded.- Returns:
- the count of recorded values
-
mean
public double mean()Return the arithmetic mean of values recorded, orDouble.NaN
if no values have been recorded.- Returns:
- the arithmetic mean of values, or zero if none
-
variance
public double variance()Return the variance of values recorded, orDouble.NaN
if no values have been recorded.- Returns:
- the variance of values, or
NaN
if none
-
skewness
public double skewness()Return the skewness of values recorded, orDouble.NaN
if less than two values have been recorded.- Returns:
- the skewness of values, or
NaN
if less than two values have been recorded - See Also:
-
kurtosis
public double kurtosis()Return the kurtosis of values recorded, orDouble.NaN
if less than four values have been recorded.- Returns:
- the kurtosis of values, or
NaN
if less than four values have been recorded - See Also:
-