Re: [R] sizing and saving graphics in R

2007-05-31 Thread Prof Brian Ripley
Why not plot directly to a bitmapped format, using bmp() or png()? That way you can create a large 'display region' when you open the device. BTW, I guess you are on Windows but you did not say so: bmp() only exists on Windows. On Wed, 30 May 2007, Felicity Jones wrote: Dear R wizards, I

Re: [R] sizing and saving graphics in R

2007-05-31 Thread michael watson \(IAH-C\)
There is also the functions pdf(), jpeg(), bmp() and png() -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murray Pung Sent: 31 May 2007 01:22 To: Felicity Jones Cc: r-help@stat.math.ethz.ch Subject: Re: [R] sizing and saving graphics in R I use

[R] sizing and saving graphics in R

2007-05-30 Thread Felicity Jones
Dear R wizards, I am seeking advice on graphics in R. Specifically, how to manipulate the size and save a plot I have produced using the LDheatmap library. I confess I am relatively new to graphics in R, but I would greatly appreciate any suggestions you may have. LDheatmap produces a

Re: [R] sizing and saving graphics in R

2007-05-30 Thread Murray Pung
I use the savePlot function for saving graphics. The following will save the active graphics panel in your working directory, in format wmf, which I find has a high resolution. Check out other possible formats in help. savePlot(filename = myfilename,type = c(wmf)) Murray On 31/05/07, Felicity