Like geom point but only has a rim by default

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
#> function (...) 
#> {
#>     geom_point(shape = 21, ...)
#> }
#> <bytecode: 0x7fa4655cf310>
#> <environment: namespace:ggdirect>

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