R Graphics Cookbook을 기반으로 하여 작성하였습니다.
그래프에 제목(Title)을 달고 싶으면,
어떻게 해야 할까요?
우선, 제목이 없는 그래프의 예시입니다.
library(ggplot2)
bp <- ggplot(PlantGrowth, aes(x=group, y=weight)) + geom_boxplot()
bp
제목(Title)을 달면,
bp + ggtitle("Plant growth")
# 혹은
bp + labs(title="Plant growth")
# 제목이 길면 \n을 사용하여 여러 줄로 나누어서....
bp + labs(title = "Plant growth with\ndifferent treatments")
# 줄 간격을 줄이고 굵은 텍스트 사용
bp + labs(title = "Plant growth with\ndifferent treatments") +
theme(plot.title = element_text(lineheight=.8, face="bold"))
반응형
'R 프로그래밍 > R 데이터 시각화' 카테고리의 다른 글
[R 그래픽스] Scatterplots 그리기 (0) | 2022.01.22 |
---|---|
[R 그래픽스] 분포 그리기 (0) | 2022.01.16 |
[R 그래픽스] 평균(means)과 오차(error) 막대그래프 그리기 (0) | 2022.01.08 |
[R 그래픽스] 막대(Bar) 및 선(Line) 그래프 그리기 (0) | 2021.12.30 |
개요 (0) | 2021.12.27 |
댓글