Re: [STATISTICS] HypergeometricDistribution has a legacy redundant method

2021-07-30 Thread Gilles Sadowski
Le ven. 30 juil. 2021 à 18:17, Alex Herbert a écrit : > > The HypergeometricDistribution defines > > /** returns {@code P(X >= x)} */ > public double upperCumulativeProbability(int x) > > This was present in Commons Math 3 and so was ported to the new stats > project. > > We now have for all distr

[STATISTICS] HypergeometricDistribution has a legacy redundant method

2021-07-30 Thread Alex Herbert
The HypergeometricDistribution defines /** returns {@code P(X >= x)} */ public double upperCumulativeProbability(int x) This was present in Commons Math 3 and so was ported to the new stats project. We now have for all distributions: /** returns {@code P(X > x)} */ double survivalProbability(in