Hi all. Can someone please tell me the syntax that is expected for control.predictor?
My code:
fit <- bru(y ~ age, family = "binomial", data = df)
Which gives the following warning:
*** Warning *** You might want to consider to setting ``control.predictor=list(link=...)''
*** Warning *** otherwise the identity link will be used to compute the fitted values for NA data
In vanilla INLA, I'd pass
control.family = list(control.link = list(model = "logit"))
to inla(...)
but I'm not sure what the equivalent is here.
Thanks!
Seth