[R] How Can I change the acf's plot type?

2005-11-28 Thread 广星
In the R Document, the usage of the acf() is as follow: acf(x, lag.max = NULL, type = c(correlation, covariance, partial), plot = TRUE, na.action = na.fail, demean = TRUE, ...) But now I want to get the result picture like: plot(x,type=l) or plot(x,type=p) How can I do this with acf

Re: [R] How Can I change the acf's plot type?

2005-11-28 Thread Prof Brian Ripley
On Mon, 28 Nov 2005, [gb2312] ¹ãÐÇ wrote: In the R Document, the usage of the acf() is as follow: acf(x, lag.max = NULL, type = c(correlation, covariance, partial), plot = TRUE, na.action = na.fail, demean = TRUE, ...) But now I want to get the result picture like: plot(x,type=l) or

Re: [R] How Can I change the acf's plot type?

2005-11-28 Thread 广星
Oops,I got it! plot(acf(x,plot=false),type=l,col=red) will be OK! Thank you very much! === 2005-11-28 18:09:03 您在来信中写道:=== On Mon, 28 Nov 2005, [gb2312] 广星 wrote: In the R Document, the usage of the acf() is as follow: acf(x, lag.max = NULL, type = c(correlation,

Re: [R] How Can I change the acf's plot type?

2005-11-28 Thread Martin Maechler
__ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Re: [R] How Can I change the acf's plot type?

2005-11-28 Thread GuangXing
I am sososo sorry for my inattention to my EMail's format! I have change that. Thank you very much again! === 2005-11-28 21:19:16 Write:=== $A9cPG(B == $A9cPG(B [EMAIL PROTECTED] on Mon, 28 Nov 2005 19:16:31 +0800 writes: $A9cPG(B Oops,I got it!