반응형
x축 라벨 각도를 회전할 때는 theme 함수를 사용합니다. 아래와 같이 입력해줍니다.
theme(axis.text.x=element_text(angle=90, hjust=1))
angle 에 원하는 각도를 넣으면 됩니다.
아래는 예시입니다.
library(ggplot2)
ggplot()+
geom_bar(data=mtcars,aes(x=row.names(mtcars),y=hp),stat='identity')+
theme(axis.text.x=element_text(angle=90, hjust=1))
반응형
'6. 데이터 시각화 - ggplot2 > 공통' 카테고리의 다른 글
[R ggplot2] 축 눈금 레이블 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
---|---|
[R ggplot2] 축 제목, 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
[R ggplot2] x축 범위, y축 범위 설정 방법 (0) | 2022.05.30 |
[R ggplot2] 그래프 제목 추가, 크기변경, 두껍게 하는 법 (0) | 2022.05.13 |
[R ggplot2] 히스토그램과 선그래프 겹쳐그리기 (0) | 2022.05.12 |
댓글