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

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -