R/rank_results.R

Defines functions rank_results

Documented in rank_results

#' Compute relative rankings of a collection of objects
#'
#' `rank_results()` computes relative ranks of a collection of objects and
#' returns a summary of the results.
#'
#' @param x A collection of objects
#' @param ... Other arguments passed to methods
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("rank_results")}
#'
#' @export
rank_results <- function(x, ...) {
  UseMethod("rank_results")
}

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.