Tidying methods for TMB models
An object of class TMB (you may need to use
class(obj) <- "TMB" on your results from TMB)
which effects should be returned?
whether to include a confidence interval
confidence level for CI
method for computing confidence intervals
additional arguments passed to confint function (tmbroot, tmbprofile)
if (require("TMB")) {
if (FALSE) { # \dontrun{
runExample("simple",thisR=TRUE)
class(obj) <- "TMB"
tidy(obj,conf.int=TRUE,conf.method="wald")
} # }
if (FALSE) tidy(obj,conf.int=TRUE,conf.method="uniroot") # \dontrun{}
if (FALSE) tidy(obj,conf.int=TRUE,conf.method="profile") # \dontrun{}
}
#> Loading required package: TMB