R/box_plot.R

Defines functions box_plot

Documented in box_plot

#' Title
#'
#' @param data
#' @param y_variable
#' @param x_variable
#'
#' @return
#' @export
#'
#' @examples
box_plot <- function(
  data,
  y_variable,
  x_variable
) {
  data %>%
    ggplot2::ggplot(ggplot2::aes({{ x_variable }}, {{ y_variable }})) +
    ggplot2::geom_boxplot() +
    tidyquant::theme_tq()
}
gouthaman87/av-gt-bigmart_sales_predictions documentation built on Dec. 20, 2021, 12:44 p.m.