org.jenetics.stat.DoubleSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jenetics Show documentation
Show all versions of org.jenetics Show documentation
Jenetics - Java Genetic Algorithm Library
/*
* Java Genetic Algorithm Library (jenetics-3.4.0).
* Copyright (c) 2007-2016 Franz Wilhelmstötter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author:
* Franz Wilhelmstötter ([email protected])
*/
package org.jenetics.stat;
import static java.util.Objects.requireNonNull;
import static org.jenetics.internal.util.Equality.eq;
import java.io.Serializable;
import java.util.DoubleSummaryStatistics;
import java.util.function.ToDoubleFunction;
import java.util.stream.Collector;
import org.jenetics.internal.util.Hash;
/**
* Value objects which contains statistical summary information.
*
* @see java.util.DoubleSummaryStatistics
*
* @author Franz Wilhelmstötter
* @since 3.0
* @version 3.0
*/
public final class DoubleSummary implements Serializable {
private static final long serialVersionUID = 1L;
private final long _count;
private final double _min;
private final double _max;
private final double _sum;
private final double _mean;
/**
* Create an immutable object which contains statistical summary values.
*
* @param count the count of values recorded
* @param min the minimum value
* @param max the maximum value
* @param sum the sum of the recorded values
* @param mean the arithmetic mean of values
*/
private DoubleSummary(
final long count,
final double min,
final double max,
final double sum,
final double mean
) {
_count = count;
_min = min;
_max = max;
_sum = sum;
_mean = mean;
}
/**
* Returns the count of values recorded.
*
* @return the count of recorded values
*/
public long getCount() {
return _count;
}
/**
* Return the minimum value recorded, or {@code Double.POSITIVE_INFINITY} if
* no values have been recorded.
*
* @return the minimum value, or {@code Double.POSITIVE_INFINITY} if none
*/
public double getMin() {
return _min;
}
/**
* Return the maximum value recorded, or {@code Double.NEGATIVE_INFINITY} if
* no values have been recorded.
*
* @return the maximum value, or {@code Double.NEGATIVE_INFINITY} if none
*/
public double getMax() {
return _max;
}
/**
* Return the sum of values recorded, or zero if no values have been
* recorded.
*
* @return the sum of values, or zero if none
*/
public double getSum() {
return _sum;
}
/**
* Return the arithmetic mean of values recorded, or zero if no values have
* been recorded.
*
* @return the arithmetic mean of values, or zero if none
*/
public double getMean() {
return _mean;
}
@Override
public int hashCode() {
return Hash.of(DoubleMoments.class)
.and(_count)
.and(_sum)
.and(_min)
.and(_max)
.and(_mean).value();
}
@Override
public boolean equals(final Object obj) {
return obj instanceof DoubleSummary &&
eq(_count, ((DoubleSummary)obj)._count) &&
eq(_sum, ((DoubleSummary)obj)._sum) &&
eq(_min, ((DoubleSummary)obj)._min) &&
eq(_max, ((DoubleSummary)obj)._max) &&
eq(_mean, ((DoubleSummary)obj)._mean);
}
@Override
public String toString() {
return String.format(
"DoubleSummary[N=%d, ∧=%s, ∨=%s, Σ=%s, μ=%s]",
getCount(), getMin(), getMax(), getSum(), getMean()
);
}
/**
* Create an immutable object which contains statistical summary values.
*
* @param count the count of values recorded
* @param min the minimum value
* @param max the maximum value
* @param sum the sum of the recorded values
* @param mean the arithmetic mean of values
* @return an immutable object which contains statistical summary values
*/
public static DoubleSummary of(
final long count,
final double min,
final double max,
final double sum,
final double mean
) {
return new DoubleSummary(
count,
min,
max,
sum,
mean
);
}
/**
* Return a new value object of the statistical summary, currently
* represented by the {@code statistics} object.
*
* @param statistics the creating (mutable) statistics class
* @return the statistical moments
*/
public static DoubleSummary of(final DoubleSummaryStatistics statistics) {
return new DoubleSummary(
statistics.getCount(),
statistics.getMin(),
statistics.getMax(),
statistics.getSum(),
statistics.getAverage()
);
}
/**
* Return a {@code Collector} which applies an double-producing mapping
* function to each input element, and returns summary-statistics for the
* resulting values.
*
* {@code
* final Stream stream = ...
* final DoubleSummary summary = stream
* .collect(toDoubleSummary(v -> v.doubleValue()));
* }
*
* @param mapper a mapping function to apply to each element
* @param the type of the input elements
* @return a {@code Collector} implementing the summary-statistics reduction
* @throws java.lang.NullPointerException if the given {@code mapper} is
* {@code null}
*/
public static Collector
toDoubleSummary(final ToDoubleFunction super T> mapper) {
requireNonNull(mapper);
return Collector.of(
DoubleSummaryStatistics::new,
(a, b) -> a.accept(mapper.applyAsDouble(b)),
(a, b) -> {a.combine(b); return a;},
DoubleSummary::of
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy