Nothing
#' @rdname geom_col_rounded
#' @export
geom_bar_rounded <-
function(
mapping = NULL,
data = NULL,
position = ggplot2::position_stack(reverse = TRUE),
radius = grid::unit(4, "pt"),
...,
width = NULL,
na.rm = FALSE,
show.legend = NA,
inherit.aes = TRUE
) {
ggplot2::layer(
data = data,
mapping = mapping,
stat = "count",
geom = GeomColRounded,
position = position,
show.legend = show.legend,
inherit.aes = inherit.aes,
params = list(
width = width,
radius = radius,
na.rm = na.rm,
...
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.