在R的情节周围的圆形边界

时间:2012-07-26 06:07:46

标签: r border

我需要在情节周围放置光滑的边框。代码

plot(0:10, 0:10, type="n", xlab="X", ylab="Y")

box("figure", col="blue")

而不是简单的蓝线,我怎么能把圆角的平滑灰线?

example

非常感谢。

1 个答案:

答案 0 :(得分:8)

library(grid)

plot(0:10, 0:10, type="n", xlab="X", ylab="Y")
grid.roundrect(gp=gpar(fill="#00000000", col="grey"))

enter image description here

如果您发现边框被切除,您可以随时缩小圆角矩形的大小:

plot(0:10, 0:10, xlab="X", ylab="Y")
grid.roundrect(height=0.99, width=0.99, gp=gpar(fill="#00000000", col="grey"))

enter image description here