[R] Storing graphics output in PNG format.

2005-10-26 Thread A Ezhil
Dear All, How can I store hist() or any plot output graphics in PNG format? I tried with bitmap() but not getting the result. Appreciate your help on fixing this. Thanks in Advance. Regrads, Ezhil __ R-help@stat.math.ethz.ch mailing list

Re: [R] Storing graphics output in PNG format.

2005-10-26 Thread Sean Davis
On 10/26/05 8:40 AM, A Ezhil [EMAIL PROTECTED] wrote: Dear All, How can I store hist() or any plot output graphics in PNG format? I tried with bitmap() but not getting the result. Appreciate your help on fixing this. help.search('png') Or ?png Gets you the answer. png('file.png')

Re: [R] Storing graphics output in PNG format.

2005-10-26 Thread Chuck Cleland
?png For example: png(c:/myplot.png) plot(rnorm(100)) dev.off() A Ezhil wrote: Dear All, How can I store hist() or any plot output graphics in PNG format? I tried with bitmap() but not getting the result. Appreciate your help on fixing this. Thanks in Advance. Regrads, Ezhil

Re: [R] Storing graphics output in PNG format.

2005-10-26 Thread Romain Francois
Le 26.10.2005 14:40, A Ezhil a écrit : Dear All, How can I store hist() or any plot output graphics in PNG format? I tried with bitmap() but not getting the result. Appreciate your help on fixing this. Thanks in Advance. Regrads, Ezhil Hi, You should try png then. ?png BTW, There is a