20. Polygon Plot
geom_polygon()이라는 명령어가 있지만, 해당 명령어는 쓰기가 조금 까다롭습니다. 요구하는 데이터 입력 방식이 간단하지가 않습니다. 그렇기 때문에 stat_ellipse()명령어를 사용하여 polygon 플랏을 그리도록 하겠습니다.
stat_ellipse()처럼 stat으로 시작하는 명령어는 옵션에 geom = 'polygon' 처럼 어떻게 그래프를 그릴 것인지 옵션을 주어야 합니다.
xxxxxxxxxx
ggplot(STOCK) +
stat_ellipse(geom = 'polygon',
aes(x = Volume, y = Stock.Trading, fill = Year), alpha = 0.2) +
geom_point(aes(x = Volume, y = Stock.Trading, col = Year),
alpha = 0.2) +
theme_classic() +
# 그래프 가시성을 위해 축 범위 조절
xlim(0,1000000) + ylim(0,50000000000)
댓글
댓글 쓰기