Skip to content

Commit c962bc2

Browse files
committed
removed extraneous 100x scaling of mu_a
1 parent 39d2ec9 commit c962bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ARM/Ch.14/election88.stan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ transformed parameters {
2020
}
2121
model {
2222
mu_a ~ normal(0, 1);
23-
a ~ normal (100 * mu_a, sigma_a);
23+
a ~ normal (mu_a, sigma_a);
2424
b ~ normal (0, 100);
2525
y ~ bernoulli_logit(y_hat);
2626
}

0 commit comments

Comments
 (0)