Grafik garis memiliki garis yang menghubungkan semua titik dalam diagram.
Untuk membuat garis, gunakan fungsi plot() dan tambahkan parameter tipe dengan nilai "l":
Contoh :
plot(1:10, type="l")
plot(1:10, type="l", col="blue")
plot(1:10, type="l", lwd=2)
Note : lwd adalah ketebalan
parameter :
- 1 is default, while 0.5 means 50% smaller
- 2 means 100% larger
plot(1:10, type="l", lwd=5, lty=3)
note : lty merupakan styles
parameter :
- 0 removes the line
- 1 displays a solid line
- 2 displays a dashed line
- 3 displays a dotted line
- 4 displays a "dot dashed" line
- 5 displays a "long dashed" line
- 6 displays a "two dashed" line
Multiline
line1 <- c(1,2,3,4,5,10)
line2 <- c(2,5,7,8,9,10)
plot(line1, type = "l", col = "blue")
lines(line2, type="l", col = "red")