Skip to content

Commit 35bb474

Browse files
argusdustykortschak
authored andcommitted
stat/distuv: correct Gamma Mode() and LogProb(0)/Prob(0) for alpha <= 1
1 parent 2bef024 commit 35bb474

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

stat/distuv/gamma.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,15 @@ func (g Gamma) ExKurtosis() float64 {
4747
// LogProb computes the natural logarithm of the value of the probability
4848
// density function at x.
4949
func (g Gamma) LogProb(x float64) float64 {
50-
if x <= 0 {
50+
if x < 0 {
5151
return math.Inf(-1)
5252
}
5353
a := g.Alpha
5454
b := g.Beta
5555
lg, _ := math.Lgamma(a)
56+
if a == 1 {
57+
return math.Log(b) - lg - b*x
58+
}
5659
return a*math.Log(b) - lg + (a-1)*math.Log(x) - b*x
5760
}
5861

@@ -63,11 +66,11 @@ func (g Gamma) Mean() float64 {
6366

6467
// Mode returns the mode of the normal distribution.
6568
//
66-
// The mode is NaN in the special case where the Alpha (shape) parameter
69+
// The mode is 0 in the special case where the Alpha (shape) parameter
6770
// is less than 1.
6871
func (g Gamma) Mode() float64 {
6972
if g.Alpha < 1 {
70-
return math.NaN()
73+
return 0
7174
}
7275
return (g.Alpha - 1) / g.Beta
7376
}

stat/distuv/gamma_test.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,20 @@ func testGamma(t *testing.T, f Gamma, i int) {
8383
checkProbContinuous(t, i, x, 0, math.Inf(1), f, quadTol)
8484
checkQuantileCDFSurvival(t, i, x, f, 5e-2)
8585
if f.Alpha < 1 {
86-
if !math.IsNaN(f.Mode()) {
87-
t.Errorf("Expected NaN mode for alpha < 1, got %v", f.Mode())
86+
if f.Mode() != 0 {
87+
t.Errorf("Expected 0 mode for alpha < 1, got %v", f.Mode())
88+
}
89+
if !math.IsInf(f.Prob(0), 1) {
90+
t.Errorf("Expected pdf(0) to be +Infinity for alpha < 1, got %v", f.Prob(0))
8891
}
8992
} else {
9093
checkMode(t, i, x, f, 2e-1, 1)
9194
}
95+
if f.Alpha == 1 {
96+
if math.IsInf(f.LogProb(0), 0) {
97+
t.Errorf("Expected log(pdf(0)) to be finite for alpha = 1, got %v", f.LogProb(0))
98+
}
99+
}
92100
cdfNegX := f.CDF(-0.0001)
93101
if cdfNegX != 0 {
94102
t.Errorf("Expected zero CDF for negative argument, got %v", cdfNegX)

0 commit comments

Comments
 (0)