## ---- include = FALSE--------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) options(crayon.enabled = TRUE) ansi_aware_handler <- function(x, options) { paste0( "
",
fansi::sgr_to_html(x = x, warn = FALSE, term.cap = "256"),
"
"
)
}
old_hooks <- fansi::set_knit_hooks(knitr::knit_hooks,
which = c("output", "message", "error", "warning"))
knitr::knit_hooks$set(
output = ansi_aware_handler,
message = ansi_aware_handler,
warning = ansi_aware_handler,
error = ansi_aware_handler
)
## ----setup--------------------------------------------------------------------
library(DImodelsMulti)
library(DImodels)
## ----thetaOptions, eval = FALSE-----------------------------------------------
# DImulti(..., theta = c(0.5, 1, 1.2))
# DImulti(..., theta = 1)
## ----DI_data_value, eval = FALSE----------------------------------------------
# DI_data(..., theta = 1.2, what = "FULL")
## ----test_theta, eval = FALSE-------------------------------------------------
# AICc(DImodel)
# AICc(DImodel_theta)
## ----testSep_theta, eval = FALSE----------------------------------------------
# AICc(DImodel)
# AICc(DImodel_thetaFunc1)
#
# AICc(DImodel)
# AICc(DImodel_thetaFunc2)
#
# AICc(DImodel)
# AICc(DImodel_thetaFunc3)