R/var_imp.R

Defines functions var_imp

Documented in var_imp

#' Calculation of variable importance
#'
#' A generic method for calculating variable importance for model objects.
#'
#' @param object A fitted model object.
#' @param ... Other arguments passed to methods
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("var_imp")}
#'
#' @export
var_imp <- function(object, ...) {
  UseMethod("var_imp")
}

Try the generics package in your browser

Any scripts or data that you put into this service are public.

generics documentation built on July 6, 2022, 1:08 a.m.