Creating a blank plot with a border in r -
i trying create empty plot has green border. creating green box, know how make plot blank having trouble creating box around plot.
p2 <- plot(0,type='n', axes=false, ann=false, lty='solid', col='green') print(p2)
you can create empty plot using
plot(0, type = 'n', axes = false, ann = false) and draw box using function box:
box(col = "green")
Comments
Post a Comment