다음은 iris 꽃잎의 길이와 넓이를 x축, y축을 기준으로 산점도로 그리는 예시입니다.
> plot(iris$Petal.Length, iris$Petal.Width)
그림 6-44 | 꽃잎의 길이와 넓이 산점도
꽃잎 길이(Petal.Length)와 넓이(Petal.Width)를 축으로 산점도가 그려졌습니다. 그래프에 ‘iris data’라는 제목을 붙이고 x축과 y축에도 이름을 붙여 보겠습니다. 또 품종(Species)별로 색상을 입혀 보겠습니다.
> # 품종에 따른 색상 분류 추가 > plot(iris$Petal.Length, iris$Petal.Width, main = "iris data", xlab = "Petal Length", ylab = "Petal Width", col = iris$Species)
* 그래프 제목
* x축 이름
* y축 이름
* 품종을 기준으로 색상 입힘