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

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

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

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