Re: [Commons][Descriptive][STATISTICS-7][GSoC] SummaryStatistics class design & Whether to use DoubleSummaryStatistics class from java.util package?

2019-06-03 Thread Gilles Sadowski
Hello. Side note: Top-posting is quite annoying in these discussions... Le dim. 2 juin 2019 à 21:27, Eric Barnhill a écrit : > > As discussed on prior threads you should have both. There will need to be > static convenience methods for a user who wants to make a very simple call, > say

Re: [Commons][Descriptive][STATISTICS-7][GSoC] SummaryStatistics class design & Whether to use DoubleSummaryStatistics class from java.util package?

2019-06-02 Thread Eric Barnhill
As discussed on prior threads you should have both. There will need to be static convenience methods for a user who wants to make a very simple call, say Stats.mean() . But, as Alex said, this convenience class will just be a front end for the statistics functionality itself. That needs to be in

Re: [Commons][Descriptive][STATISTICS-7][GSoC] SummaryStatistics class design & Whether to use DoubleSummaryStatistics class from java.util package?

2019-06-02 Thread Alex Herbert
> On 2 Jun 2019, at 13:45, Virendra singh Rajpurohit > wrote: > > I've been trying to make summary statistics class. I have some doubt. There > is a class DoubleSummaryStatistics in java.util package(There are two more > for Int and Long). I'll attach this file here. > Do I have to design

[Commons][Descriptive][STATISTICS-7][GSoC] SummaryStatistics class design & Whether to use DoubleSummaryStatistics class from java.util package?

2019-06-02 Thread Virendra singh Rajpurohit
I've been trying to make summary statistics class. I have some doubt. There is a class DoubleSummaryStatistics in java.util package(There are two more for Int and Long). I'll attach this file here. Do I have to design SummaryStatistics in this way only? I mean, description on