| geom_xmin | R Documentation | 
Draw vertical line at the minimum value of x
geom_xmin(
  mapping = NULL,
  data = NULL,
  position = "identity",
  na.rm = FALSE,
  show.legend = NA,
  inherit.aes = TRUE,
  ...
)
mapping | 
 provide you own mapping, x is required  | 
data | 
 provide you own data  | 
position | 
 change geom  | 
na.rm | 
 remove missing values without warning, default is F  | 
show.legend | 
 show legend in plot, default is T  | 
inherit.aes | 
 should the geom inherits aesthetics from global, default is true  | 
... | 
 other arguments to be passed to the geom, see geom segment  | 
a ggplot2 layer
library(ggplot2)
ggplot(data = cars, mapping = aes(x = dist)) + geom_histogram() + geom_xmin()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.