#' @rdname p_value_ml1
#' @export
ci_ml1 <- function(model, ci = 0.95, ...) {
df_ml1 <- dof_ml1(model)
out <- lapply(ci, function(i) {
.ci_dof(
model = model,
ci = i,
effects = "fixed",
component = "all",
dof = df_ml1,
method = "ml1",
...
)
})
out <- do.call(rbind, out)
row.names(out) <- NULL
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.