Re: [R] savePlot() does not save plot with format set

2008-08-26 Thread Monica Pisica
Did you try: savePlot("test.bmp", type = "bmp") Monica Message: 118 Date: Tue, 26 Aug 2008 10:29:13 +0100 From: "Luis Ridao Cruz" Subject: [R] savePlot() does not save plot with format set

Re: [R] savePlot() does not save plot with format set

2008-08-26 Thread S Ellison
Strictly, you need to type the extension _if your filename or path include a period (".")_ but not otherwise. The filename "test" alone will be saved as paste("test",type). So will, for example, "/plots/test". But filenames such as "test.it" or "../plots/test" will not include the extension automa

Re: [R] savePlot() does not save plot with format set

2008-08-26 Thread Henrique Dallazuanna
You need type the extension of the file: plot(rnorm(10)) savePlot("test.png", type="png") savePlot("test.bmp", type="bmp") On Tue, Aug 26, 2008 at 6:29 AM, Luis Ridao Cruz <[EMAIL PROTECTED]> wrote: > R-help, > > Whenever I try to save a plot with "savePlot" > the file is not stored in my hard d

[R] savePlot() does not save plot with format set

2008-08-26 Thread Luis Ridao Cruz
R-help, Whenever I try to save a plot with "savePlot" the file is not stored in my hard disk with the selected format. Several formats are set and none of them works. I just get the file name with missing extension and it can't be open with programs like Paint and Microsoft Photo Editor Th only on