Open maswiebe opened 3 years ago
On p.15 of the pdf, you have: correct_fit <- stan(model_code = "models/joint_iv.stan" which should be correct_fit <- stan(file = "models/joint_iv.stan",
correct_fit <- stan(model_code = "models/joint_iv.stan"
correct_fit <- stan(file = "models/joint_iv.stan",
On p.18: print(correct_fit, pars = c("beta", "sigma", "nu")) should be: print(correct_fit, pars = c("beta", "sigma", "tau"))
print(correct_fit, pars = c("beta", "sigma", "nu"))
print(correct_fit, pars = c("beta", "sigma", "tau"))
And there's another reference to nu being Student-t, which is not in the code.
On p.15 of the pdf, you have:
correct_fit <- stan(model_code = "models/joint_iv.stan"
which should becorrect_fit <- stan(file = "models/joint_iv.stan",