如何控制图中符号的字体?

时间:2013-02-28 08:31:21

标签: r plot

在R中,在plot()函数中,pch参数控制符号的外观。例如pch = 3,但是可以使这个符号变粗,像font.symbol = 2?

1 个答案:

答案 0 :(得分:1)

如果你使用带有线条的符号,看起来lwd可能会得到你想要的东西:

plot(1:10, lwd = rep(1:5, 2), cex = 2)

enter image description here