R/allVisualFunctions.R

Defines functions allVisualFunctions

Documented in allVisualFunctions

#' @title Overview of all available visualFunctions
#' 
#' @description Produce an overview of all functions of class \code{visualFunction} 
#' available in the workspace or imported from packages. This overview includes
#' the descriptions and a list of what classes the functions are each intended
#' to be called on.
#' 
#' @return An object of class \code{functionSummary}. This object has entries \code{$name}
#' (the function names), \code{$description} (the function descriptions, as obtained from their
#' \code{description} attributes) and \code{$classes} (the classes each function is indeded 
#' to be called on, as obtained from their \code{classes} attributes). 
#' 
#' @seealso \code{\link{visualFunction}} \code{\link{allCheckFunctions}}
#' \code{\link{allSummaryFunctions}}
#' 
#' @examples 
#' allVisualFunctions()
#' 
#' @export
allVisualFunctions <- function() {
  allXFunctions("visualFunction")
}

Try the dataMaid package in your browser

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

dataMaid documentation built on Oct. 8, 2021, 9:08 a.m.