I have a problem similar to the rat -tumour example. I am interested in getting the marginal posterior density of mu ( defined in the stan code, alpha/ (alpha+beta)). When I run the following stan code on my data, attached, I get the following graph, attached, where I compare the raw data with the sampled posterior marginal density. I have two questions:-
- Most of my raw data points agree very well with each other, but the sampled posterior density doesn’t seem right. The following model seems to work well for the examples where the raw data is not skewed towards the extreme. My initial guess was that the prior used for kappa might be influencing the posterior and driving it away from the data. But even on changing the hyper priors’ distribution completely ( from uniform to exponential) the results dont change. Could some one conceptually explain me what is going on ?
- What is the best way for me to choose the distribution for hyperpriors?
Following is my STAN code for the beta binomial model I am using.
code=
data {
int<lower=2> J; // number of coins
int<lower=0> y[J]; // heads in respective coin trials
int<lower=0> n[J]; // total in respective coin trials
}
parameters {
real<lower = 0, upper = 1> mu;
real<lower = 0> kappa;
}
transformed parameters {
real<lower=0> alpha;
real<lower=0> beta;
alpha = kappa * mu;
beta = kappa - alpha;
}
model {
mu ~ uniform(0, 1);
kappa ~uniform(1,100); \\ exponential(0.05)
y ~ beta_binomial(n, alpha, beta);
}
data-stan.csv (242 Bytes)