Nothing
#' Summarize single response selection results of `collinear`
#'
#' @param object (sub-list in output of [collinear()] ) Object to summarize. Default: NULL
#' @param ... Ignored, kept for consistency with generic.
#' @return list: response name and character vector of selected predictors.
#' @method summary collinear_selection
#' @family S3_methods
#' @autoglobal
#' @export
summary.collinear_selection <- function(
object = NULL,
...
) {
out <- object$selection
# response ----
if (!is.null(object$response)) {
msg <- paste0(
"response: ",
object$response
)
msg_length <- nchar(msg)
underline <- paste0(rep(x = "-", times = nchar(msg)), collapse = "")
cat(
msg,
fill = TRUE
)
cat(underline)
cat("\n")
}
# selection ----
if (length(out) > 1) {
cat(
"+ selection:\n -",
paste(
out,
collapse = "\n - "
)
)
} else {
cat(
"- selection:\n -",
out
)
}
cat("\n")
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.