Skip to contents

Geom point/jitter with shape 21 and color white

Usage

geom_point2(..., shape = 21, color = "white")

geom_jitter2(..., shape = 21, color = "white")

Arguments

...

geom_point/geom_jitter parameters.

shape

Shape 21

color

Color "white"

Examples


ggplot(iris) +
  geom_jitter(aes(Sepal.Length, Sepal.Width, color = Species))


ggplot(iris) +
  geom_jitter2(aes(Sepal.Length, Sepal.Width, fill = Species))


ggplot(iris) +
  geom_point(aes(Sepal.Length, Sepal.Width, color = Species))


ggplot(iris) +
  geom_point2(aes(Sepal.Length, Sepal.Width, fill = Species))