Hi All,
I am trying to fit a Logistic regression model using R-INLA. I have 3 covariates and I am interested in using a non-informative prior for two of them, but an informative prior for the other. It seems like I could write the code as follows for a non-informative/default prior for all parameters:
model1<-inla(RESPONSE ~ TRT+ AGE + LUNG_Capacity + WB_Count,
data=dataset1, family = "binomial", Ntrials = 1, num.threads = 2)
However, if I want to use an informative prior for LUNG_Capacity (from among the available standard options - Gaussian should do, I don't need a custom prior), its not intuitive to me what the syntax is. All examples online seem to be for the case where you only have a single variable for which you are specifying a prior.
Thanks for any help. Long time JAGS user, trying to make the leap to INLA! If this has already been answered, I'd be grateful for a link (although a search on this forum didnt seem to help).
Regards
Desi.