This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
The following commit(s) were added to refs/heads/master by this push: new 17bd39a Track changes 17bd39a is described below commit 17bd39a924d7eb670ec0f429889273515cd5dac3 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Mon Jun 17 08:48:27 2024 +0100 Track changes --- src/changes/changes.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index cf980b9..ca76f2b 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -59,7 +59,12 @@ Adds ranking, inference, descriptive and bom modules. (requires Java 8). <action dev="aherbert" type="add" issue="STATISTICS-85"> Add a quantile and median implementation. </action> - <action dev="aherbert" due-to="Anirudh Joshi" type="add" issue="STATISTICS-71"> + <action dev="aherbert" type="add" issue="STATISTICS-81"> + Add descriptive statistics for integer types. These allow improved accuracy and performance + for int and long data using an array or streams over using the equivalent double + implementation via primitive conversion. + </action> + <action dev="aherbert" due-to="Anirudh Joshi, Alex Herbert" type="add" issue="STATISTICS-71"> Add commons-statistics-descriptive module for implementations of univariate statistics. Contains base interfaces for statistics and implementations for individual statistics (e.g. Min, Max, Sum, Mean, Variance) and combinations of statistics.