R/estimate.R

Defines functions estimate

Documented in estimate

#' Estimate a Predictiveness Measure
#'
#' Generic function for estimating a predictiveness measure (e.g., R-squared or classification accuracy).
#'
#' @param x An R object. Currently, there are methods for \code{predictiveness_measure} objects only.
#' @param ... further arguments passed to or from other methods.
#'
#' @export
estimate <- function(x, ...) {
  UseMethod("estimate")
}

Try the vimp package in your browser

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

vimp documentation built on Aug. 29, 2023, 1:06 a.m.