Message-ID: <loom.20110105T142816-195@post.gmane.org>
Date: 2011-01-05T13:28:50Z
From: Ben Bolker
Subject: How to save graphs out of ACF ?
<Mihai.Mirauta <at> bafin.de> writes:
>
> Hi,
>
> I want to save the autocorrelation plots resulting out of ACF (acf(ts)), not
just by using the "Save as"
> command in the R Gui but using some sort of code, which allows me to chose the
format and the path.
> Thank you,
>
> Mihai
for example:
a <- acf(runif(10))
pdf("acf.pdf")
plot(a)
dev.off()