<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()

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to