Re: [R] Making a picture that is wide and small height

2008-12-03 Thread Greg Snow
TECTED] > project.org] On Behalf Of David Epstein > Sent: Wednesday, December 03, 2008 1:00 AM > To: r-help@r-project.org > Subject: [R] Making a picture that is wide and small height > > > How do I make a picture that is a horizontal strip? I tried > > > plot(x=c(1,2,3,4),y=c(

Re: [R] Making a picture that is wide and small height

2008-12-03 Thread Prof Brian Ripley
On Tue, 2 Dec 2008, David Epstein wrote: How do I make a picture that is a horizontal strip? I tried plot(x=c(1,2,3,4),y=c(1,1,1,1)) #works but screen image is square. pdf("ratio.pdf",height=1,width=6) plot(x=c(1,2,3,4),y=c(1,1,1,1)) I got the following error message: Error in plot.new() : f

[R] Making a picture that is wide and small height

2008-12-03 Thread David Epstein
How do I make a picture that is a horizontal strip? I tried > plot(x=c(1,2,3,4),y=c(1,1,1,1)) #works but screen image is square. > pdf("ratio.pdf",height=1,width=6) > plot(x=c(1,2,3,4),y=c(1,1,1,1)) I got the following error message: Error in plot.new() : figure margins too large Is it possible