Re: [R] labels gone

2010-03-16 Thread Zhongyi Yuan
Hi Milton, Thanks for your help. I must confess that I don't understand what your code means at this moment. But you really helped me out and I'll figure it out later. Thanks. Cheers. Zhongyi On Tue, Mar 16, 2010 at 12:26 AM, milton ruser wrote: > Hi Zhongyi, > > I must confess I not understoo

Re: [R] labels gone

2010-03-15 Thread milton ruser
Hi Zhongyi, I must confess I not understood completely what you need, but... Tau<-seq(0.05,0.95,0.05); Pi <- seq(0.19,0.01,-0.01); par(cex.axis=0.8,ps=9,mar=c(1.5,1,0.5,1), oma=c(1,1,0.2,1) ,tck=-0.01); plot(Tau,Pi, type='l', xlab="Tau",ylab="Pi",col=4, xaxt="n", yaxt="n"); axis(1,labels=F) axis(

[R] labels gone

2010-03-15 Thread Zhongyi Yuan
Dear R users: I am drawing a graph with the following code: Tau<-seq(0.05,0.95,0.05); Pi <- seq(0.19,0.01,-0.01); par(cex.axis=0.8,ps=9,mar=c(1.5,1,0.5,1), oma=c(1,1,0.2,1) ,tck=-0.01); plot(Tau,Pi, type='l', xlab="Tau",ylab="Pi",col=4); I want to make the graph take as little space as possible.