spline2_create <- function(x, nm = "pred", .fn = "bSpline", df = 3, complete_set = TRUE,
degree = NULL, fn_opts = NULL, call = rlang::caller_env()) {
vals <- c("bSpline", "cSpline", "iSpline", "mSpline", "naturalSpline", "bernsteinPoly")
.fn <- rlang::arg_match(.fn, vals)
fn_opts <- c(fn_opts, degree = degree)
if (.fn != "bernsteinPoly" && isTRUE(degree > (df - complete_set))) {
if (complete_set) {
cli::cli_abort(
"{.arg degree} ({degree}) must be less than to {.arg deg_free} \\
({df}) when {.code complete_set = FALSE}.",
call = call
)
} else {
cli::cli_abort(
"{.arg degree} ({degree}) must be less than or equal to {.arg deg_free} \\
({df}) when {.code complete_set = TRUE}.",
call = call
)
}
}
.cl <-
rlang::call2(
.fn,
.ns = "splines2",
x = rlang::expr(x),
df = df,
intercept = complete_set,
!!!fn_opts
)
res <- try(rlang::eval_tidy(.cl), silent = TRUE)
if (inherits(res, "try-error")) {
spline_msg(res)
return(NULL)
}
res <- attributes(res)
res$x <- NULL
res$class <- NULL
res$dimnames <- NULL
res$.fn <- .fn
res$.ns = "splines2"
res$nm <- nm
res
}
spline_msg <- function(x) {
x <- as.character(x)
# Error messages can contain brackets (e.g. "Error in if (df < 0) { : missing value")
# For glue string interpolation, the default open/close deliminators the
# brackets. cli_abort calls rlang's abort and that can't pass the arguments
# to change the delimiters but will ignore them if they are doubled. So we
# change "{" to "{{" (and also for close). Simultaneous substitution via
# `pattern = "(\\{)|(\\})"` produces poor results so we do them one at a time.
x <- gsub("(\\{)", "\\1\\1", x)
x <- gsub("(\\})", "\\1\\1", x)
x <- strsplit(x, "\\n")[[1]]
cli::cli_abort(x)
}
spline2_apply <- function(object, new_data) {
.ns <- object$.ns
.fn <- object$.fn
nm <- object$nm
object$.ns <- NULL
object$.fn <- NULL
object$nm <- NULL
.cl <- rlang::call2(.ns = .ns, .fn = .fn, !!!object, x = rlang::expr(new_data))
res <- rlang::eval_tidy(.cl)
attributes(res) <- list(dim = dim(res), dimnames = dimnames(res))
if (length(new_data) == 1) {
res <- matrix(res, nrow = 1, dimnames = dimnames(res))
}
colnames(res) <- names0(ncol(res), paste0(nm, "_"))
tibble::as_tibble(res)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.