# NOT RUN {
## Dobson (1990) Page 93: Randomized Controlled Trial :
counts <- c(18, 17, 15, 20, 10, 20, 25, 13, 12)
outcome <- gl(3, 1, 9)
treatment <- gl(3, 3)
model <- glm(counts ~ outcome + treatment, family = poisson())
performance_score(model)
# }
# NOT RUN {
if (require("glmmTMB")) {
  data(Salamanders)
  model <- glmmTMB(
    count ~ spp + mined + (1 | site),
    zi =  ~ spp + mined,
    family = nbinom2(),
    data = Salamanders
  )
  performance_score(model)
}
# }
Run the code above in your browser using DataLab