Re: [R] graph shading is overlaying axes

2009-12-29 Thread Jim Lemon
On 12/28/2009 10:38 PM, Dean1 wrote: How can I resolve this problem?... As a general example, plot (1:4) polygon(c(0,0,5,5),c(0,5,5,0), border=lavenderblush1, col = lavenderblush1) ###see how this overlays the axes lines #I have tried... for (k in 1:4) axis(k, lwd.ticks=0, label=F) #...but

[R] graph shading is overlaying axes

2009-12-28 Thread Dean1
How can I resolve this problem?... As a general example, plot (1:4) polygon(c(0,0,5,5),c(0,5,5,0), border=lavenderblush1, col = lavenderblush1) ###see how this overlays the axes lines #I have tried... for (k in 1:4) axis(k, lwd.ticks=0, label=F) #...but this misses the corners Any

Re: [R] graph shading is overlaying axes

2009-12-28 Thread jim holtman
Try this: plot (1:4) polygon(c(0,0,5,5),c(0,5,5,0), border=lavenderblush1, col = lavenderblush1) ###see how this overlays the axes lines box() On Mon, Dec 28, 2009 at 6:38 AM, Dean1 web13s...@yahoo.co.uk wrote: How can I resolve this problem?... As a general example, plot (1:4)

Re: [R] graph shading is overlaying axes

2009-12-28 Thread Dean1
Thanks, this solves the problem -- View this message in context: http://n4.nabble.com/graph-shading-is-overlaying-axes-tp989750p989787.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list