ggplot2로 시작하는 데이터 시각화
Rick Scavetta
Founder, Scavetta Academy

기능
주요:
보조:
지침 원칙
금지 사항:
필수 사항:






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

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






ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
col = Species)) +
geom_point()

ggplot(iris, aes(x = Sepal.Length,
y = Sepal.Width,
col = Species)) +
geom_point(position = "jitter",
alpha = 0.5)

ggplot2로 시작하는 데이터 시각화