Skip to content
Prev 20492 / 20628 Next

glmmTMB syntax to brm() syntax

Thank you, Ben. I deleted and installed glmmTMB from CRAN and it is
still version 1.1.9 on my machine with that same error showing up.

I love the 'covstruct' vignette. But I, for example, don't know what
to use in my simulate_new() call below to define the dispersion,
would that be 'sigmadisp'?

dd <- data.frame(ID = rep(1:100, each = 2),
                 con = rep(c("simple","complex"), 100)) %>%
  group_by(ID) %>% mutate(obs=row_number())

dd$VOCD <- simulate_new(
  ~ 0+con + (1|ID),
  dispformula = ~ con,
  newdata = dd,
  newparams = list(beta = c(0, 0.5), theta = rep(-1,2),
                   disp = 1))[[1]]
On Mon, Oct 28, 2024 at 12:10?PM Ben Bolker <bbolker at gmail.com> wrote: