geom_ring: geom_ring

View source: R/geom_ring.R

geom_ringR Documentation

geom_ring

Description

Like geom point but only has a rim by default

Usage

geom_ring(...)

Arguments

...
fill

character string color name or hexidecimal entry

Value

a ggplot2 layer

Examples

# without function
library(ggplot2)
ggplot(cars) +
  aes(x = speed, y = dist) +
  geom_ring(size = 7, color = "slateblue")

 geom_ring

# using function
library(ggplot2)
ggplot(cars) +
  aes(x = speed, y = dist) +
  geom_ring(size = 7, color = "slateblue")

EvaMaeRey/ggdirect documentation built on Sept. 29, 2023, 12:36 a.m.