반응형
x축 범위 설정에는 scale_x_continuous 함수를, y축 범위 설정에는 scale_x_continuous 함수를 사용합니다.
예시는 아래와 같습니다.
ggplot()+
geom_point(data=iris, aes(x=Sepal.Length,y=Sepal.Width))+
scale_x_continuous(limits = c(0, 100))+
scale_y_continuous(limits = c(0, 100))
반응형
'6. 데이터 시각화 - ggplot2 > 공통' 카테고리의 다른 글
[R ggplot2] 축 눈금 레이블 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
---|---|
[R ggplot2] 축 제목, 크기, bold 설정 (x축, y축) (0) | 2022.05.31 |
[R ggplot2] x축 라벨 각도 회전하기 (0) | 2022.05.31 |
[R ggplot2] 그래프 제목 추가, 크기변경, 두껍게 하는 법 (0) | 2022.05.13 |
[R ggplot2] 히스토그램과 선그래프 겹쳐그리기 (0) | 2022.05.12 |
댓글