Skip to content

Commit edf7d41

Browse files
authored
fix half-measures (#156)
* fix half-measures * bump version * add tests * fix StudentT bugs * Drop HalfLaplace (it's just an Exponential)
1 parent 9b3f489 commit edf7d41

File tree

6 files changed

+37
-18
lines changed

6 files changed

+37
-18
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MeasureTheory"
22
uuid = "eadaa1a4-d27c-401d-8699-e962e1bbc33b"
33
authors = ["Chad Scherrer <[email protected]> and contributors"]
4-
version = "0.11.1"
4+
version = "0.11.2"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

src/parameterized/cauchy.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Cauchy distribution
33

4-
export Cauchy
4+
export Cauchy, HalfCauchy
55

66
@parameterized Cauchy(μ,σ) (1/π) * Lebesgue(ℝ)
77

src/parameterized/laplace.jl

-5
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,4 @@ Base.rand(rng::AbstractRNG, μ::Laplace{()}) = rand(rng, Dists.Laplace())
2424

2525
TV.as(::Laplace) = asℝ
2626

27-
# @μσ_methods Laplace()
28-
@half Laplace
29-
30-
HalfLaplace(σ) = HalfLaplace=σ)
31-
3227
distproxy(::Laplace{()}) = Dists.Laplace()

src/parameterized/normal.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,7 @@ Base.rand(rng::Random.AbstractRNG, T::Type, μ::Normal{()}) = randn(rng, T)
122122
###############################################################################
123123
# The `@half` macro takes a symmetric univariate measure and efficiently creates
124124
# a truncated version.
125-
@half Normal()
126-
125+
@half Normal
127126

128127

129128
# A single unnamed parameter for `HalfNormal` should be interpreted as a `σ`

src/parameterized/studentt.jl

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11

22
# StudentT distribution
33

4-
export StudentT
4+
export StudentT, HalfStudentT
55

66
@parameterized StudentT(ν) Lebesgue(ℝ)
77

88
@kwstruct StudentT(ν)
9+
@kwstruct StudentT(ν,μ)
10+
@kwstruct StudentT(ν,σ)
11+
@kwstruct StudentT(ν,μ,σ)
912

10-
StudentT(nt::NamedTuple{(:ν,:μ,:σ)}) = Affine(nt, StudentT())
11-
StudentT(nt::NamedTuple{(:ν,:μ,:ω)}) = Affine(nt, StudentT())
12-
StudentT(nt::NamedTuple{(:ν,:σ,)}) = Affine(nt, StudentT())
13-
StudentT(nt::NamedTuple{(:ν,:ω,)}) = Affine(nt, StudentT())
14-
StudentT(nt::NamedTuple{(:ν,:μ,)}) = Affine(nt, StudentT())
13+
StudentT(nt::NamedTuple{(:ν,:μ,:σ)}) = Affine(NamedTuple{(:μ,:σ)}(nt), StudentT(ν=nt.ν))
14+
StudentT(nt::NamedTuple{(:ν,:μ,:ω)}) = Affine(NamedTuple{(:μ,:ω)}(nt), StudentT(ν=nt.ν))
15+
StudentT(nt::NamedTuple{(:ν,:σ,)}) = Affine(NamedTuple{(:σ,)}(nt), StudentT(ν=nt.ν))
16+
StudentT(nt::NamedTuple{(:ν,:ω,)}) = Affine(NamedTuple{(:ω,)}(nt), StudentT(ν=nt.ν))
17+
StudentT(nt::NamedTuple{(:ν,:μ,)}) = Affine(NamedTuple{(:μ,)}(nt), StudentT(ν=nt.ν))
1518

1619
@affinepars StudentT
1720

@@ -37,11 +40,10 @@ TV.as(::StudentT) = asℝ
3740

3841
Base.rand(rng::AbstractRNG, T::Type, μ::StudentT{(:ν,)}) = rand(rng, Dists.TDist.ν))
3942

40-
distproxy(d::StudentT{(:ν, :μ, :σ)}) = Dists.LocationScale(d.μ, d.σ, Dists.TDist(d.ν))
43+
distproxy(d::StudentT{(:ν,)}) = Dists.TDist(d.ν)
4144

4245
@half StudentT
43-
@kwstruct StudentT()
4446

45-
HalfStudentT(ν,σ) = HalfStudentT=ν,σ=σ)
47+
HalfStudentT(ν, σ) = HalfStudentT((ν=ν, σ=σ))
4648

4749
asparams(::Type{<:StudentT}, ::Val{:ν}) = asℝ₊

test/runtests.jl

+23
Original file line numberDiff line numberDiff line change
@@ -396,3 +396,26 @@ end
396396
@test f(x) x^2
397397
end
398398
end
399+
400+
@testset "Half measures" begin
401+
@testset "HalfNormal" begin
402+
d = Normal=3)
403+
h = HalfNormal(3)
404+
x = rand(h)
405+
@test density(h, Lebesgue(ℝ), x) 2 * density(d, Lebesgue(ℝ), x)
406+
end
407+
408+
@testset "HalfCauchy" begin
409+
d = Cauchy=3)
410+
h = HalfCauchy(3)
411+
x = rand(h)
412+
@test density(h, Lebesgue(ℝ), x) 2 * density(d, Lebesgue(ℝ), x)
413+
end
414+
415+
@testset "HalfStudentT" begin
416+
d = StudentT=2, σ=3)
417+
h = HalfStudentT(2, 3)
418+
x = rand(h)
419+
@test density(h, Lebesgue(ℝ), x) 2 * density(d, Lebesgue(ℝ), x)
420+
end
421+
end

0 commit comments

Comments
 (0)