본문 바로가기
R면 R수록

ggplot2 : 그래프 주변정리함수들

by 즐거운 지니 2021. 1. 3.
반응형

ggplot2 : 그래프 주변정리함수들

가로 세로 축 교환

g <- ggplot(data = iris, mapping = aes(x = Sepal.Length, y = Sepal.Width)) + geom_point(colour = c("purple", "blue", "green")[iris$Species], pch = c(0, 2, 20)[iris$Species], size = c(1, 1.5, 2)[iris$Species])

g
g + coord_flip()


축 범위 설정

g + coord_cartesian(xlim = c(4,6),ylim = c(2,4))

제목, 부제 등

g + labs(title = "제목", subtitle = "부제목", caption = "주석", x = "x축 이름", y = "y축 이름")

범례 설정에 관한 글을
https://m.blog.naver.com/pmw9440/221458284805 에서 참조한다.

반응형

'R면 R수록' 카테고리의 다른 글

Rmd파일에서 R 스크립트 추출  (0) 2021.04.23
ggplot2 : annotate()  (0) 2021.01.03
ggplot2 : geom_bar()  (0) 2021.01.03
ggplot2 : geom_histogram()  (0) 2021.01.03
ggplot2 : geom_boxplot()  (0) 2021.01.03

댓글