반응형
1. 범례를 색으로 구분
x <- seq(-pi, pi, len = 100)
plot(x, sin(x), type = "l", ylim = c(-pi, pi), col = 1)
lines(x, cos(x), col = 2)
lines(x, tan(x), col = 3)
legend("topright",legend=c("sin", "cos", "tan"), fill=c(1,2,3))
2. 범례를 선스타일로 구분
x <- seq(-pi, pi, len = 100)
plot(x, sin(x), type = "l", ylim = c(-pi, pi), col = 1,lty=1)
lines(x, cos(x), col = 2,lty=2)
lines(x, tan(x), col = 3,lty=4)
legend("topright",legend=c("sin", "cos", "tan"), col=c(1,2,3),lty=c(1,2,4))
반응형
'4. 그래프 꾸미기(저수준 함수) > legend() - 범례' 카테고리의 다른 글
R 범례(legend) 넣는 방법 (위치,기호,색,크기) (0) | 2020.06.11 |
---|
댓글