갈루아의 반서재

기본형태


segments(x0, y0, x1, y1) 

* x0, y0 - 시작점의 좌표

   x1, y1 - 끝나는 점의 좌표

* 라인모양, 색상, 폭 등 설정 가능


> plot.new()

> plot.window(xlim = c(0, 10), ylim = c(0, 10))

> axis(1)

> axis(2)

> segments(1,1,5,7)