Nothing
#' @tags skip_on_cran ## (35s) to limit total check time
if (requireNamespace("glmmTMB") && getRversion() >= "4.4.0") {
library(futurize)
library(glmmTMB)
options(future.rng.onMisuse = "error")
plan(multisession)
## Adopted from example("confint.glmmTMB", package = "glmmTMB")
m <- glmmTMB(count ~ mined + (1 | site), data = Salamanders, family = nbinom2)
message("Ordinary processing:")
pr_truth <- profile(m)
print(head(pr_truth))
message("Futurized processing:")
counters <- plan("backend")[["counters"]]
pr <- profile(m) |> futurize()
delta <- plan("backend")[["counters"]] - counters
cat(sprintf("Futures created: %d\n", delta[["created"]]))
stopifnot(delta[["created"]] > 0L)
print(head(pr))
message("Comparing results:")
stopifnot(all.equal(pr, pr_truth))
## Skip confint() for 'glmmTMB' until has been fixed per
## https://github.com/glmmTMB/glmmTMB/issues/1268
if (FALSE) {
## confint.glmmTMB() via stats::confint() S3 generic dispatch
message("Ordinary processing:")
ci_truth <- confint(m, method = "profile")
print(ci_truth)
message("Futurized processing:")
counters <- plan("backend")[["counters"]]
ci <- confint(m, method = "profile") |> futurize()
delta <- plan("backend")[["counters"]] - counters
cat(sprintf("Futures created: %d\n", delta[["created"]]))
stopifnot(delta[["created"]] > 0L)
print(ci)
message("Comparing results:")
stopifnot(all.equal(ci, ci_truth))
}
plan(sequential)
} ## if (requireNamespace("glmmTMB"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.