2013-10-24 7 views
0

"+"를 굵게 표시해야합니다. 다른 심볼을 사용할 수 있습니까, 아니면 사용해야합니까?굵게 표시된 기호 + 기호

plot(1:10,1:10,type="l") 
points(1:10,rep(5,10),pch="+") 

enter image description here

답변

2

당신이 사용할 수있는 pch=3lwd

plot(1:10,1:10,type="l") 
points(1:10,rep(5,10),pch=3,lwd=5) 
2

으로 시도 textfont=2과 :

plot(1:10,1:10,type="l") 
text(1:10,rep(5,10),label="+",font=2) 

enter image description here