Skip to content

acf problem ?

4 messages · Ernesto Jardim, Brian Ripley, Sundar Dorai-Raj

#
Hi

I'm getting the following error that do not make sense to me, what am 
Idoing wrong ?

 > acf(Recsim[1,], lag.max=1)
Error in acf(Recsim[1, ], lag.max = 1) : 'lag.max' must be at least 1

Regards

EJ
#
On Thu, 12 May 2005, Ernesto Jardim wrote:

            
Inside the code

     lag.max <- min(lag.max, sampleT - 1)
     if (lag.max < 1)
         stop("'lag.max' must be at least 1")

so you have only one point in your `time series', I think.
#
Ernesto Jardim wrote:

            
Hi

The problem was that Recsim[1,] was not numeric.

EJ
#
Ernesto Jardim wrote on 5/12/2005 11:01 AM:
Hi, Ernesto,

What is Recsim[1,]? I can reproduce this error using:

 > acf(c(lh), 1)
 > acf(matrix(lh,ncol=1), 1)
 > acf(matrix(lh,nrow=1), 1)
Error in acf(matrix(lh, nrow = 1), 1) : 'lag.max' must be at least 1

So, maybe try

acf(c(Recsim[1,]), lag.max=1)

HTH,

--sundar