Mingcong Tang
unread,Dec 31, 2024, 9:26:34 AM12/31/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to hbayesdm-users
Hello,
I'm working with the igt_vpp function to model data from an Iowa Gambling Task (IGT) study. While running the model, I noticed that the outputs appear to be identical regardless of whether the inc_postpred argument is set to TRUE or FALSE. Specifically, I expected differences in the output based on whether posterior predictive checks were included, but this does not seem to be the case. I was wondering if it could be a bug.
Here is an example of the code I used:
output1 <- igt_vpp(
data = my_data, niter = 4000, nwarmup = 2000, nchain = 4, ncore = 4,
nthin = 1,
inits = "random",
indPars = "mean",
modelRegressor = FALSE,
vb = FALSE,
inc_postpred = FALSE,
adapt_delta = 0.95,
stepsize = 1,
max_treedepth = 10)
output2 <- igt_vpp(
data = my_data, niter = 4000, nwarmup = 2000, nchain = 4, ncore = 4,
nthin = 1,
inits = "random",
indPars = "mean",
modelRegressor = FALSE,
vb = FALSE,
inc_postpred = TRUE,
adapt_delta = 0.95,
stepsize = 1,
max_treedepth = 10)
Thank you very much for your time and clarification!
Best regards,
Mingcong