Skip to contents

geom_post() may be used to visualize discrete quantitative distributions

Usage

geom_post(
  mapping = NULL,
  data = NULL,
  position = "identity",
  na.rm = FALSE,
  show.legend = NA,
  inherit.aes = TRUE,
  ...
)

Value

a ggplot2 geom layer

Examples

library(ggplot2)
ggplot(data = prize_wheel) +
aes(x = payout, y = frequency) +
geom_post()