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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
# small wrapper around this commonly used try-catch
.safe <- function(code, on_error = NULL) {
if (isTRUE(getOption("easystats_errors", FALSE)) && is.null(on_error)) {
code
} else {
tryCatch(code, error = function(e) on_error)
}
}
#' help-functions
#' @keywords internal
.data_frame <- function(...) {
x <- data.frame(..., stringsAsFactors = FALSE)
rownames(x) <- NULL
x
}
#' Safe transformation from factor/character to numeric
#'
#' @keywords internal
.factor_to_dummy <- function(x) {
if (is.numeric(x)) {
return(x)
}
# get unique levels / values
values <- if (is.factor(x)) {
levels(x)
} else {
stats::na.omit(unique(x))
}
dummy <- as.data.frame(do.call(cbind, lapply(values, function(i) {
out <- rep(0, length(x))
out[is.na(x)] <- NA
out[x == i] <- 1
out
})))
colnames(dummy) <- values
dummy
}
#' @keywords internal
.rename_values <- function(x, old, new) {
x[x %in% old] <- new
x
}
#' for models with zero-inflation component, return required component of model-summary
#' @keywords internal
.filter_component <- function(dat, component) {
switch(component,
conditional = dat[dat$Component == "conditional", ],
zi = ,
zero_inflated = dat[dat$Component == "zero_inflated", ],
dat
)
}
# Find log-terms inside model formula, and return "clean" term names
.log_terms <- function(model) {
x <- insight::find_terms(model, flatten = TRUE, verbose = FALSE)
gsub("^log\\((.*)\\)", "\\1", grep("^log\\((.*)\\)", x, value = TRUE))
}
# Execute a function but store warnings (https://stackoverflow.com/a/4947528/4198688)
#' @keywords internal
.catch_warnings <- function(expr) {
myWarnings <- NULL
wHandler <- function(w) {
myWarnings <<- c(myWarnings, list(w))
invokeRestart("muffleWarning")
}
val <- withCallingHandlers(expr, warning = wHandler)
list(out = val, warnings = myWarnings)
}
#' @keywords internal
.get_object <- function(x, attribute_name = "object_name") {
obj_name <- attr(x, attribute_name, exact = TRUE)
model <- NULL
if (!is.null(obj_name)) {
model <- .safe(get(obj_name, envir = parent.frame()))
# prevent self reference
if (is.null(model) || inherits(model, "parameters_model")) {
model <- .safe(get(obj_name, envir = globalenv()))
}
# prevent self reference
if (is.null(model) || inherits(model, "parameters_model")) {
model <- .safe(.dynGet(obj_name))
}
}
model
}
.is_semLme <- function(x) {
all(inherits(x, c("sem", "lme")))
}
.insert_row_at <- function(data, row, index, default_value = NA) {
# add missing columns
new_columns <- setdiff(colnames(data), colnames(row))
if (length(new_columns) > 0) {
row[new_columns] <- default_value
}
# match column order
row <- row[match(colnames(data), colnames(row))]
# insert row
if (index == 1) {
rbind(row, data)
} else if (index == (nrow(data) + 1)) {
rbind(data, row)
} else {
rbind(data[1:(index - 1), ], row, data[index:nrow(data), ])
}
}
.insert_element_at <- function(data, element, index) {
if (index == 1) {
c(element, data)
} else if (index == (length(data) + 1)) {
c(data, element)
} else {
c(data[1:(index - 1)], element, data[index:length(data)])
}
}
.find_factor_levels <- function(model_data, model = NULL, model_call = NULL) {
# check whether we have on-the-fly conversion of factors
if (!is.null(model)) {
model_terms <- insight::find_terms(model, verbose = FALSE)
} else if (!is.null(model_call)) { # nolint
model_terms <- insight::find_terms(model_call, verbose = FALSE)
} else {
model_terms <- NULL
}
# extract all model terms, we now have "as.factor(term)" etc., if any
if (!is.null(model_terms$conditional)) {
# extract variable names from "as.factor(term)" etc.
factor_terms <- grep("(as\\.factor|factor|as\\.character)", model_terms$conditional, value = TRUE)
cleaned <- gsub("(as\\.factor|factor|as\\.character)\\((.*)\\)", "\\2", factor_terms)
# convert on-the-fly factors into real factors
if (length(cleaned)) {
for (i in seq_along(cleaned)) {
model_data[[factor_terms[i]]] <- as.factor(model_data[[cleaned[i]]])
}
}
}
# extract levels from factors, so we know the reference level
out <- lapply(colnames(model_data), function(i) {
v <- model_data[[i]]
if (is.factor(v)) {
paste0(i, levels(v))
} else if (is.character(v)) {
paste0(i, unique(v))
} else {
NULL
}
})
names(out) <- names(model_data)
insight::compact_list(out)
}
# This functions finds contrasts for those factors in a model, where including
# a reference level makes sense. This is the case when there are contrasts
# that are all zeros, which means that the reference level is not included in
# the model matrix.
.remove_reference_contrasts <- function(model) {
cons <- .safe(model$contrasts)
if (is.null(cons)) {
return(NULL)
}
out <- vapply(cons, function(mat) {
if (is.matrix(mat) && nrow(mat) > 0) {
any(rowSums(mat) == 0)
} else if (is.character(mat)) {
mat %in% c("contr.treatment", "contr.SAS")
} else {
FALSE
}
}, logical(1))
# only return those factors that need to be removed
names(out)[!out]
}
# Almost identical to dynGet(). The difference is that we deparse the expression
# because get0() allows symbol only since R 4.1.0
.dynGet <- function(x,
ifnotfound = stop(gettextf("%s not found", sQuote(x)), domain = NA, call. = FALSE),
minframe = 1L,
inherits = FALSE) {
x <- insight::safe_deparse(x)
n <- sys.nframe()
myObj <- structure(list(.b = as.raw(7)), foo = 47L)
while (n > minframe) {
n <- n - 1L
env <- sys.frame(n)
r <- get0(x, envir = env, inherits = inherits, ifnotfound = myObj)
if (!identical(r, myObj)) {
return(r)
}
}
ifnotfound
}
.deprecated_warning <- function(old, new, verbose = TRUE) {
if (verbose) {
insight::format_warning(paste0(
"Argument `", old,
"` is deprecated and will be removed in the future. Please use `",
new,
"` instead."
))
}
}
|