我需要在情节周围放置光滑的边框。代码
plot(0:10, 0:10, type="n", xlab="X", ylab="Y")
box("figure", col="blue")
而不是简单的蓝线,我怎么能把圆角的平滑灰线?
非常感谢。
答案 0 :(得分:8)
library(grid)
plot(0:10, 0:10, type="n", xlab="X", ylab="Y")
grid.roundrect(gp=gpar(fill="#00000000", col="grey"))
如果您发现边框被切除,您可以随时缩小圆角矩形的大小:
plot(0:10, 0:10, xlab="X", ylab="Y")
grid.roundrect(height=0.99, width=0.99, gp=gpar(fill="#00000000", col="grey"))