This is an automated email from the ASF dual-hosted git repository.
aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
from 55f1181 Refactor shared variance/std.dev. computation
new c60f274 Increase kurtosis tolerance
new 3afb93d STATISTICS-81: Add aggregate statistics for int and long
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../descriptive/BigIntegerStatisticResult.java | 0
.../statistics/descriptive/DoubleStatistics.java | 129 +-----
.../statistics/descriptive/IntStatisticResult.java | 0
.../{DoubleStatistics.java => IntStatistics.java} | 448 ++++++++++-----------
.../commons/statistics/descriptive/IntSum.java | 11 +
.../statistics/descriptive/IntSumOfSquares.java | 11 +
.../descriptive/LongStatisticResult.java | 0
.../{DoubleStatistics.java => LongStatistics.java} | 426 +++++++++-----------
.../commons/statistics/descriptive/LongSum.java | 11 +
.../statistics/descriptive/LongSumOfSquares.java | 11 +
.../commons/statistics/descriptive/Statistics.java | 218 ++++++++++
.../descriptive/DoubleStatisticsTest.java | 17 +-
.../statistics/descriptive/IntKurtosisTest.java | 4 +-
...eStatisticsTest.java => IntStatisticsTest.java} | 394 ++++++++++--------
.../statistics/descriptive/LongKurtosisTest.java | 4 +-
...StatisticsTest.java => LongStatisticsTest.java} | 398 ++++++++++--------
.../statistics/descriptive/StatisticsTest.java | 116 ++++++
.../commons/statistics/descriptive/TestHelper.java | 80 +++-
src/conf/checkstyle/checkstyle-suppressions.xml | 4 +-
src/conf/pmd/pmd-ruleset.xml | 3 +-
20 files changed, 1336 insertions(+), 949 deletions(-)
rename commons-statistics-descriptive/src/{test =>
main}/java/org/apache/commons/statistics/descriptive/BigIntegerStatisticResult.java
(100%)
rename commons-statistics-descriptive/src/{test =>
main}/java/org/apache/commons/statistics/descriptive/IntStatisticResult.java
(100%)
copy
commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/{DoubleStatistics.java
=> IntStatistics.java} (61%)
rename commons-statistics-descriptive/src/{test =>
main}/java/org/apache/commons/statistics/descriptive/LongStatisticResult.java
(100%)
copy
commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/{DoubleStatistics.java
=> LongStatistics.java} (61%)
copy
commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/{DoubleStatisticsTest.java
=> IntStatisticsTest.java} (54%)
copy
commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/{DoubleStatisticsTest.java
=> LongStatisticsTest.java} (54%)
create mode 100644
commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/StatisticsTest.java