Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b8ba6ab

Browse files
committedMay 3, 2024·
updates
1 parent fbc419a commit b8ba6ab

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed
 

‎src/BUGSExamples/BUGSExamples.jl

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ function load_example_volume(volume_num::Int)
6767
include("Volume_2/05_Eyes.jl")
6868
include("Volume_2/10_BiRats.jl")
6969
vol_2 = (
70+
dugongs = dugongs,
71+
orange_trees = orange_trees,
72+
orange_trees_multivariate = orange_trees_multivariate,
7073
birats = birats,
7174
eyes = eyes
7275
)

‎src/BUGSExamples/Volume_2/01_Dugongs.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name = "Dugongs: nonlinear growth curve"
33
model_def = @bugs begin
44
for i in 1:N
55
Y[i] ~ dnorm(mu[i], tau)
6-
mu[i] < -alpha - beta * pow(gamma, x[i])
6+
mu[i] = alpha - beta * pow(gamma, x[i])
77
end
88
alpha ~ dunif(0, 100)
99
beta ~ dunif(0, 100)
1010
gamma ~ dunif(0.5, 1.0)
1111
tau ~ dgamma(0.001, 0.001)
12-
sigma < -1 / sqrt(tau)
13-
U3 < -logit(gamma)
12+
sigma = 1 / sqrt(tau)
13+
U3 = logit(gamma)
1414
end
1515

1616
original = """
@@ -48,5 +48,5 @@ reference_results = (
4848
sigma = (mean = 0.09917, std = 0.01503)
4949
)
5050

51-
dugong = Example(
51+
dugongs = Example(
5252
name, model_def, original, data, inits, inits_alternative, reference_results)

‎src/BUGSExamples/Volume_2/02_Orange_trees.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ model_def = @bugs begin
1414
end
1515
end
1616
tauC ~ dgamma(1.0E-3, 1.0E-3)
17-
sigma.C < -1 / sqrt(tauC)
17+
var"sigma.C" = 1 / sqrt(tauC)
1818
for k in 1:3
1919
mu[k] ~ dnorm(0, 1.0E-4)
2020
tau[k] ~ dgamma(1.0E-3, 1.0E-3)
@@ -89,5 +89,5 @@ reference_results = (
8989
quantile_97_5 = 10.68, n_eff = 5001, Rhat = 20000)
9090
)
9191

92-
orange_tree = Example(
92+
orange_trees = Example(
9393
name, model_def, original, data, inits, inits_alternative, reference_results)

‎src/BUGSExamples/Volume_2/03_Multivariate_Orange_trees.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,5 @@ reference_results = (
9797
quantile_2_5 = 5.947, quantile_97_5 = 10.66, n_eff = 5001, Rhat = 20000)
9898
)
9999

100-
orange_tree_multivariate = Example(
100+
orange_trees_multivariate = Example(
101101
name, model_def, original, data, inits, inits_alternative, reference_results)

0 commit comments

Comments
 (0)
Please sign in to comment.