Hello,
I have a big hierarchical regression model. As it makes sense to see how it works without data, I did that. I could not manage to get a good mixing, so I simplified the model to detect the minimum pathology.
Why is a simple model like this not mix well? Play understand the two parameters will be correlated but I don’t see why they should not mix very well.
The weird mixing you see below gets worse as the model gets more complicated however the same mixing patterns remain. I suspect this is the underlying cause of the poor mixing of my model without the data.
Should all models work well without data to be declared as good models to start with?
parameters {
real alpha;
real beta;
}
model {
beta ~ normal( alpha, 0.5);
alpha ~ normal(0, 0.5);
}