Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
fix(stan): invalid operator in 11 ncp
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli committed Dec 3, 2023
1 parent 99509db commit 50c20b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stan/11-hierarchical_varying_intercept-non_centered.stan
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ parameters {
vector[J] z; // group-level non-centered intercepts
}
transformed parameters {
vector[J] alpha_j = z * tau .+ alpha; // group-level intercepts
vector[J] alpha_j = z * tau + alpha; // group-level intercepts
}
model {
// priors
Expand Down

0 comments on commit 50c20b8

Please sign in to comment.