프로그래밍 언어/R

[R] plot : 제목, 축 이름 변경/지정/폰트 크기

sujo 2022. 12. 14. 14:48

[R] plot : 제목, 축 이름 변경/지정/폰트 크기

 

사용 데이터

1) cars 데이터셋

- R에서 제공하는 기본 데이터셋

- 차의 속도에 따른 정지에 걸리는 거리 데이터

1
2
?cars
str(cars)
cs

 

 

2) plot으로 간단한 차트 그리기

- x축 : speed

- y축 : dist

1
plot(cars$speed,cars$dist)
cs

 

 

제목, 축 이름 변경 및 지정

1) 제목 이름 변경

- 옵션 main

1
plot(cars$speed,cars$dist, main="Cars")
cs

 

2) 축 이름 변경

- x축 옵션 xlab

- y축 옵션 ylab

1
plot(cars$speed,cars$dist, main = "Cars", xlab = "speed", ylab = "dist")
cs

 

 

제목, 축 이름 폰트 크기 변경

- 제목 크기 옵션 cex.main

- 축 크기 옵션 cex.lab

1
2
plot(cars$speed,cars$dist, main = "Cars", xlab = "speed", ylab = "dist"
     , cex.main=2.0, cex.lab=1.5)
cs

 

 

'프로그래밍 언어 > R' 카테고리의 다른 글

[Mac] R/R Studio 설치  (3) 2023.04.26
[R] pie 그래프 라벨 설정  (0) 2023.03.14
[R] RColorBrewer : 컬러 팔레트 사용하기  (1) 2022.12.27
[R] plot : 그래프 타입 종류  (0) 2022.12.20
[R] 변수 전체 목록 삭제  (0) 2022.03.29