Skip to content

Commit c775430

Browse files
Update dlm.stan
Change priors from Student-t -> Normal(0, 0.5)
1 parent d5241aa commit c775430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inst/stan/dlm.stan

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ transformed parameters {
9797
}
9898
}
9999
model {
100-
sigma ~ student_t(3,0,1); // prior for sigma
100+
sigma ~ normal(0, 0.5); // prior for sigma
101101
Lcorr ~ lkj_corr_cholesky(2.0); // prior for cholesky factor of a correlation matrix
102-
phi ~ student_t(3,0,1); // obseervation variance
102+
phi ~ normal(0, 0.5); // obseervation variance
103103
b_fixed ~ normal(0,1);
104104
nu ~ student_t(3,0,1);
105105

0 commit comments

Comments
 (0)