An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20050929/3332b808/attachment.pl
Saving Graphics
2 messages · Mike Jones, vincent@7d4.com
Mike Jones a ??crit :
Is there a way to save graphs from the graphics window using commands in the R console?
you may try :
bmp("myimage.bmp");
plot(...);
dev.off();
# png(), jpeg() also available
hih