geom_x_percentile: Lines defined by quantile value of x

View source: R/geom_x_percentile.R

geom_x_percentileR Documentation

Lines defined by quantile value of x

Description

Lines defined by quantile value of x

Usage

geom_x_percentile(
  mapping = NULL,
  data = NULL,
  ...,
  x,
  na.rm = FALSE,
  show.legend = NA
)

Arguments

show.legend

Examples

library(ggplot2)
ggplot(data = cars, mapping = aes(x = speed, y = dist)) +
geom_point() + geom_x_percentile(percentile = c(25,75), linetype = "dashed") +
geom_x_percentile(percentile = 0, linetype = "dotted")

EvaMaeRey/ggxmean documentation built on April 10, 2024, 6:32 p.m.