Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions R/autoplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ autoplot.model_fit <- function(object, ...) {
#' @rdname autoplot.model_fit
autoplot.glmnet <- function(object, ..., min_penalty = 0, best_penalty = NULL,
top_n = 3L) {
check_number_decimal(min_penalty, min = 0, max = 1)
check_number_decimal(best_penalty, min = 0, max = 1, allow_null = TRUE)
check_number_whole(top_n, min = 1, max = Inf, allow_infinite = TRUE)
autoplot_glmnet(object, min_penalty, best_penalty, top_n, ...)
}

Expand Down Expand Up @@ -87,8 +90,6 @@ top_coefs <- function(x, top_n = 5) {
}

autoplot_glmnet <- function(x, min_penalty = 0, best_penalty = NULL, top_n = 3L, ...) {
check_penalty_value(min_penalty)

tidy_coefs <-
map_glmnet_coefs(x) %>%
dplyr::filter(penalty >= min_penalty)
Expand Down Expand Up @@ -138,7 +139,6 @@ autoplot_glmnet <- function(x, min_penalty = 0, best_penalty = NULL, top_n = 3L,
}

if (!is.null(best_penalty)) {
check_penalty_value(best_penalty)
p <- p + ggplot2::geom_vline(xintercept = best_penalty, lty = 3)
}

Expand All @@ -159,13 +159,4 @@ autoplot_glmnet <- function(x, min_penalty = 0, best_penalty = NULL, top_n = 3L,
p
}

check_penalty_value <- function(x) {
cl <- match.call()
arg_val <- as.character(cl$x)
if (!is.vector(x) || length(x) != 1 || !is.numeric(x) || x < 0) {
cli::cli_abort("{.arg {arg_val}} should be a single, non-negative value.")
}
invisible(x)
}

# nocov end
8 changes: 2 additions & 6 deletions R/control_parsnip.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,8 @@ check_control <- function(x, call = rlang::caller_env()) {
and {.field catch}.",
call = call
)
# based on ?is.integer
int_check <- function(x, tol = .Machine$double.eps^0.5) abs(x - round(x)) < tol
if (!int_check(x$verbosity))
cli::cli_abort("{.arg verbosity} should be an integer.", call = call)
if (!is.logical(x$catch))
cli::cli_abort("{.arg catch} should be a logical.", call = call)
Comment on lines -40 to -45
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very nice!!

check_number_whole(x$verbosity, call = call)
check_bool(x$catch, call = call)
x
}

Expand Down
2 changes: 2 additions & 0 deletions R/required_pkgs.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ required_pkgs.model_spec <- function(x, infra = TRUE, ...) {
if (is.null(x$engine)) {
cli::cli_abort("Please set an engine.")
}
check_bool(infra)
get_pkgs(x, infra)
}

#' @export
#' @rdname required_pkgs.model_spec
required_pkgs.model_fit <- function(x, infra = TRUE, ...) {
check_bool(infra)
get_pkgs(x$spec, infra)
}

Expand Down
10 changes: 2 additions & 8 deletions R/tidy_glmnet.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,9 @@ get_glmn_coefs <- function(x, penalty = 0.01) {
res
}

tidy_glmnet <- function(x, penalty = NULL, ...) {
tidy_glmnet <- function(x, penalty = NULL, ..., call = caller_env()) {
check_installs(x$spec)
load_libs(x$spec, quiet = TRUE, attach = TRUE)
if (is.null(penalty)) {
if (isTRUE(is.numeric(x$spec$args$penalty))){
penalty <- x$spec$args$penalty
} else {
rlang::abort("Please pick a single value of `penalty`.")
}
}
check_number_decimal(penalty, min = 0, max = 1, allow_null = TRUE, call = call)
get_glmn_coefs(x$fit, penalty = penalty)
}
5 changes: 3 additions & 2 deletions R/tune_args.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ tune_tbl <- function(name = character(),
source = character(),
component = character(),
component_id = character(),
full = FALSE) {

full = FALSE,
call = caller_env()) {

check_bool(full, call = call)
complete_id <- id[!is.na(id)]
dups <- duplicated(complete_id)
if (any(dups)) {
Expand Down
Loading