Skip to content
Prev 169068 / 398506 Next

axes

On 2/3/2009 9:18 AM, Montserrat, Francesc wrote:
As far as I can see there's no reason not to plot the points in the 
original call to plot, but I don't think you can make it much more 
"elegant" other than writing a function to do it.  You will probably 
need to use lines() or segments() to draw your Gamma axes right out to 
the corners, e.g.

usr <- par("usr")
lines(usr[c(1,1,2)], usr[c(3,4,4)])


Duncan Murdoch