geom_ring.RdLike geom point but only has a rim by default
geom_ring(...)character string color name or hexidecimal entry
a ggplot2 layer
# 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")