I am running a multivariate model (4 response variables) with two random effects using MCMCglmm(). I am currently using a inverse Wishart prior.
###current set up for prior
prior.miw<-list(R=list(V=diag(4), nu=0.002),
G=list(G1=list(V=diag(4),
nu=0.002,
alpha.mu=c(0,0,0,0),
alpha.V=diag(4)*1000),
G2=list(V=diag(4), #need to repeat to deal with second random effect
nu=0.002,
alpha.mu=c(0,0,0,0),
alpha.V=diag(4)*1000)))
Based on my model, it appears I should really run a scaled inverse Wishart prior (see page 14 of Lemoine 2019).
My question: how do I make this into a prior that is suitable for my MCMCglmm() model?
Additionally, if this is NOT the sort of prior I should be running, please feel free to weigh in.
