We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc7819 commit 025c8a8Copy full SHA for 025c8a8
test/univariate/continuous/loglogistic.jl
@@ -5,15 +5,12 @@ using Test
5
6
@test round(pdf(LogLogistic(), -1), digits=6) == 0.0
7
@test round(pdf(LogLogistic(), 1), digits=6) == 0.25
8
- @test round(pdf(LogLogistic(2), 2), digits=6) == 0.125
9
@test round(pdf(LogLogistic(2,2), 1), digits=6) == 0.32
10
11
@test round(cdf(LogLogistic(), -1), digits=6) == 0.0
12
@test round(cdf(LogLogistic(), 1), digits=6) == 0.5
13
- @test round(cdf(LogLogistic(2), 3), digits=6) == 0.6
14
@test round(cdf(LogLogistic(2,2), 4), digits=6) == 0.8
15
16
- @test round(ccdf(LogLogistic(2), 3), digits=6) == 0.4
17
@test round(ccdf(LogLogistic(2,2), 4), digits=6) == 0.2
18
19
@test round(logpdf(LogLogistic(), -1), digits=6) == -Inf
0 commit comments