Message-ID: <1050419720.1484.1.camel@gandalf.ipimar.pt>
Date: 2003-04-15T15:15:21Z
From: Ernesto Jardim
Subject: graphics output produces corrupt/empty files
In-Reply-To: <3E9C1CEC.7010209@bibliothek.uni-regensburg.de>
On Tue, 2003-04-15 at 15:53, Martin Schmettow wrote:
> Hi there.
>
> as a newbie I figured out the basics of R but when it came to graphic
> output it was a bad surprise.
> All but the X11 device do not function properly. Most of them generate
> an empty file and pdf() produces non valid output (gs and acroread as well).
> Very annoying, because I have to write a report.
> I got the recent stable binary rpm (v1.6.2) from CRAN on a SuSE Linux 8.1.
> Any help?
>
> CU
> Martin.
Hi
After producing your file with pdf() you have to do dev.off()
pdf("file")
plot(...)
dev.off()
Have you done it ?
Regards
EJ