library(ggplot2)
library(see)
normal <- ggplot(iris, aes(x = Petal.Width, y = Sepal.Length)) +
geom_point(size = 8, alpha = 0.3) +
theme_modern()
new <- ggplot(iris, aes(x = Petal.Width, y = Sepal.Length)) +
geom_point2(size = 8, alpha = 0.3) +
theme_modern()
plots(normal, new, n_columns = 2)
ggplot(iris, aes(x = Petal.Width, y = Sepal.Length, fill = Species)) +
geom_point_borderless(size = 4) +
theme_modern()
theme_set(theme_abyss())
ggplot(iris, aes(x = Petal.Width, y = Sepal.Length, fill = Species)) +
geom_point_borderless(size = 4)
Run the code above in your browser using DataLab