[R] print graph
Marc Schwartz
MSchwartz at medanalytics.com
Thu Sep 18 06:16:43 CEST 2003
On Wed, 2003-09-17 at 21:56, Atsuya Fujito wrote:
> Hello.
>
> I am using R 1.7.1 on Mac OSX10.2.6 and XDarwin86 4.3.
> I made barplot graph by barplot2.
> I can get good graph on x11() device.
> But when change the device to potscript(), the graph changed to
> incomplete.
> For example, absence of label or err bar or ...
> I would like to print out this graph.
> Can anyone suggest how to print out graph?
>
> Hope this help,
> Thank you,
>
> atuya
Did you remember to use:
dev.off()
after completing the plot?
For example:
postscript("barplot2.ps")
barplot2(1:10)
dev.off()
HTH,
Marc Schwartz
More information about the R-help
mailing list