R/example_dependency.R

Defines functions example_dependency

Documented in example_dependency

#' @title Dependency Example
#'
#' @param x A numeric data series
#'
#' @description This is an exmple to show the use of dependencies
#'
#'
#' @examples
#' df <- MASS::Boston
#' age <- df$age
#' example_dependency(age)
#'
#'
#'
#' @export
example_dependency <- function(x){
  ggplot2::qplot(x, geom = "histogram", binwidth = 10)
}
villegar/friendlyGarbanzo documentation built on Feb. 11, 2020, 12:07 a.m.