We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 010fba1 + 5a06c60 commit 6ae317dCopy full SHA for 6ae317d
inst/stan/dirichregmod.stan
@@ -11,8 +11,8 @@ data { // set up to run a single instance (1 stock) of GSI observations
11
int tot_re; // total number of random intercepts
12
int n_groups; // number of re groups
13
matrix[N_samples, tot_re] design_Z; // design matrix of random ints
14
- int re_var_indx[tot_re + 1]; // total index across acll groups
15
- int n_re_by_group[n_groups + 1]; // indices by group
+ array[tot_re + 1] int re_var_indx; // total index across acll groups
+ array[n_groups + 1] int n_re_by_group; // indices by group
16
int est_re; // 0 or 1 indicator
17
}
18
transformed data {
0 commit comments