Re: [R] Axis positions

2011-02-16 Thread Jim Lemon
On 02/16/2011 08:45 PM, Filoche wrote: Hi everyone. I would like to modify the axis on my plot. First, I would like to make a plot without the box. so I use : plot(x,y, axes = FALSE, type = 'l') Then, I call : axis(1, tck = -0.02) axis(2, tck = -0.02) to have X and Y axis appear. However,

Re: [R] Axis positions

2011-02-16 Thread Dimitris Rizopoulos
try using box(), e.g., plot(x, y, axes = FALSE, type = 'l') axis(1, tck = -0.02) axis(2, tck = -0.02) box(bty = "l") I hope it helps. Best, Dimitris On 2/16/2011 10:45 AM, Filoche wrote: Hi everyone. I would like to modify the axis on my plot. First, I would like to make a plot without t