我需要控制 R 中基本 xy 图的样式,因此构建了这样的绘图区域:
frame()
plot.window(xlim=c(0,1), ylim=c(-.6, .8))
axis(1, at=c(0, .2, .4, .6, .8, 1.0), lwd=2)
axis(2, at=c(-.6, -.4, -.2, 0, .2, .4, .6, .8), lwd=2)
但是,我无法弄清楚如何围绕该图创建一个物理框架(使用 lwd = 2)。是否可以(有必要?)使用line()
or polygon()
?还是有更多内置的东西?
我也对如何更改使用该plot()
函数创建的绘图的框架和轴权重感兴趣。