1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
# .wbm, .wbgee
# model parameters -------------------
#' @export
model_parameters.wbm <- function(model,
ci = 0.95,
ci_random = NULL,
bootstrap = FALSE,
iterations = 1000,
effects = "all",
group_level = FALSE,
exponentiate = FALSE,
p_adjust = NULL,
include_sigma = FALSE,
keep = NULL,
drop = NULL,
verbose = TRUE,
...) {
effects <- match.arg(effects, choices = c("fixed", "random", "all"))
params <- .mixed_model_parameters_generic(
model = model,
ci = ci,
bootstrap = bootstrap,
iterations = iterations,
merge_by = c("Parameter", "Component"),
standardize = NULL,
exponentiate = exponentiate,
effects = effects,
p_adjust = p_adjust,
group_level = group_level,
ci_method = NULL,
include_sigma = include_sigma,
ci_random = ci_random,
keep_parameters = keep,
drop_parameters = drop,
verbose = verbose,
...
)
attr(params, "object_name") <- insight::safe_deparse_symbol(substitute(model))
class(params) <- c("parameters_model", "see_parameters_model", "data.frame")
params
}
#' @export
model_parameters.wbgee <- model_parameters.wbm
#' @export
model_parameters.asym <- function(model,
ci = 0.95,
ci_method = NULL,
bootstrap = FALSE,
iterations = 1000,
standardize = NULL,
exponentiate = FALSE,
p_adjust = NULL,
include_info = getOption("parameters_info", FALSE),
keep = NULL,
drop = NULL,
verbose = TRUE,
...) {
params <- model_parameters.default(
model,
ci = ci,
ci_method = ci_method,
bootstrap = bootstrap,
iterations = iterations,
standardize = standardize,
exponentiate = exponentiate,
p_adjust = p_adjust,
include_info = include_info,
keep = keep,
drop = drop,
verbose = verbose,
...
)
attr(params, "no_caption") <- TRUE
params
}
# standard errors -------------------
#' @export
standard_error.wbm <- function(model, ...) {
s <- summary(model)
se <- c(
s$within_table[, "S.E."],
s$between_table[, "S.E."],
s$ints_table[, "S.E."]
)
params <- insight::get_parameters(model, effects = "fixed")
.data_frame(
Parameter = params$Parameter,
SE = as.vector(se),
Component = params$Component
)
}
#' @export
standard_error.wbgee <- standard_error.wbm
# p values -------------------
#' @export
p_value.wbm <- function(model, ...) {
s <- summary(model)
p <- c(
s$within_table[, "p"],
s$between_table[, "p"],
s$ints_table[, "p"]
)
params <- insight::get_parameters(model, effects = "fixed")
.data_frame(
Parameter = params$Parameter,
p = as.vector(p),
Component = params$Component
)
}
#' @export
p_value.wbgee <- p_value.wbm
# utils -------------------
.mixed_model_parameters_generic <- function(model,
ci,
ci_random = NULL,
bootstrap, # nolint
iterations, # nolint
merge_by, # nolint
standardize, # nolint
exponentiate, # nolint
effects, # nolint
p_adjust, # nolint
group_level, # nolint
ci_method, # nolint
include_sigma = FALSE,
keep_parameters = NULL,
drop_parameters = NULL,
verbose = TRUE,
...) {
params <- params_random <- params_variance <- att <- NULL
if (effects %in% c("fixed", "all")) {
params <- .model_parameters_generic(
model = model,
ci = ci,
bootstrap = bootstrap,
iterations = iterations,
merge_by = merge_by,
standardize = standardize,
exponentiate = exponentiate,
effects = "fixed",
p_adjust = p_adjust,
ci_method = ci_method,
include_sigma = include_sigma,
keep_parameters = keep_parameters,
drop_parameters = drop_parameters,
verbose = verbose,
...
)
params$Effects <- "fixed"
att <- attributes(params)
}
if (effects %in% c("random", "all") && isTRUE(group_level)) {
params_random <- .extract_random_parameters(model, ci = ci, effects = effects)
}
if (effects %in% c("random", "all") && isFALSE(group_level)) {
params_variance <- .extract_random_variances(model, ci = ci, effects = effects, ci_method = ci_method, ci_random = ci_random, verbose = verbose)
}
# merge random and fixed effects, if necessary
if (!is.null(params) && (!is.null(params_random) || !is.null(params_variance))) {
params$Level <- NA
params$Group <- ""
# reorder
if (!is.null(params_random)) {
params <- params[match(colnames(params_random), colnames(params))]
} else {
params <- params[match(colnames(params_variance), colnames(params))]
}
}
params <- rbind(params, params_random, params_variance)
if (!is.null(att)) {
attributes(params) <- utils::modifyList(att, attributes(params))
}
# remove empty column
if (!is.null(params$Level) && all(is.na(params$Level))) {
params$Level <- NULL
}
params
}
|