R/table_plot.R

Defines functions table_plot

Documented in table_plot

#' @export
#' @rdname qbin_barplot
table_plot <- function(
    data,
    x = NULL,
    n = 100,
    ncols=ncol(data),
    fill = "#555555",
    ...
  ) {
  qbin_barplot(
    data,
    x = x,
    n = n,
    type = "mean",
    ncols = ncols,
    fill = fill,
    ...
  )
}

Try the qbinplots package in your browser

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

qbinplots documentation built on April 3, 2025, 6:33 p.m.