ggplot2 ile Orta Düzey Veri Görselleştirme
Rick Scavetta
Founder, Scavetta Academy


ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
color = Species)) +
geom_point() +
geom_smooth(method = "lm",
se = FALSE)

ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
color = Species)) +
geom_point() +
geom_smooth(method = "lm",
se = FALSE) +
coord_flip()

ggplot2 ile Orta Düzey Veri Görselleştirme