Open
Description
Per #219, other data may be involved in inference. In the eight schools model, for example, the data block contains:
data {
int<lower=0> J; // number of schools
real y[J]; // estimated treatment effects
real<lower=0> sigma[J]; // s.e. of effect estimates
}
right now, we only extract "observed_data", which are observations of parameters in the model. More specifically, the posterior_predictive/
group should match with the observed_data/
group. Open for suggestions on whether and how to store the rest of the data.