R中带有粗体+符号的点

时间:2013-10-24 00:58:39

标签: r symbols points

我需要用粗体制作那些“+”。是否可能或应该使用其他符号?

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

enter image description here

2 个答案:

答案 0 :(得分:2)

尝试使用pch=3lwd

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

答案 1 :(得分:2)

您可以将textfont=2

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

enter image description here