+ Reply to Thread
Results 1 to 7 of 7

autocorrelation function (ACF)

  1. #1
    Rado Lavrih
    Guest

    autocorrelation function (ACF)


    Hi!

    wonder if anybody has knowledge of Excel add in that performs
    autocorrelation function (ACF) and of the partial autocorrelation
    function (PACF).

    I need it for excel demonstration of Box Jenkinins Metholody for Arima
    models in forecasting.

    Thanks

    Rado



  2. #2
    Mike Middleton
    Guest

    Re: autocorrelation function (ACF)

    Rado Lavrih -

    ACF is easy to implement with worksheet functions SUMPRODUCT and OFFSET, as
    shown in Chapter 18, Autocorrelation and Autoregression, of my book Data
    Analysis Using Microsoft Excel.

    If you do a Google search for "excel autocorrelation partial" (without the
    quotes), you'll get numerous links.

    - Mike
    www.mikemiddleton.com
    Last edited by shg; 04-05-2010 at 12:07 AM.

  3. #3
    Jerry W. Lewis
    Guest

    Re: autocorrelation function (ACF)

    Do a Google search on Box Jenkins Excel. There are a few add-ins and an
    academic article.

    =SUMPRODUCT(OFFSET(data,0,0,70-lag,1)-AVERAGE(data),OFFSET(data,lag,0,70-lag,1)-AVERAGE(data))/DEVSQ(data)

    implements the definition of autocorrelation preferred in Box & Jenkins.

    Jerry
    Last edited by shg; 04-05-2010 at 12:07 AM.

  4. #4
    Rado Lavrih
    Guest

    Re: autocorrelation function (ACF)

    Thanks Jerry! Works fine!

    Bye
    Last edited by shg; 04-05-2010 at 12:07 AM.

  5. #5
    Rado Lavrih
    Guest

    Re: autocorrelation function (ACF)


    P.S.: Jerry is there such a function for PACF too?

    Regards

    Rado



  6. #6
    Registered User
    Join Date
    04-04-2010
    Location
    Groningen
    MS-Off Ver
    2013
    Posts
    3

    Re: autocorrelation function (ACF)

    The formula can be simplified:
    =PEARSON(OFFSET($data$,0,0,N-lag,1),OFFSET($data$,lag,0,N-lag,1))

    where N=number of observations (data points)
    lag=chosen period (try different periods to find optimum)
    instead of pearson, also correl can be used:

    =CORREL(OFFSET($data$,0,0,N-lag,1),OFFSET($data$,lag,0,N-lag,1))

  7. #7
    Registered User
    Join Date
    07-05-2010
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003
    Posts
    1

    Re: autocorrelation function (ACF)

    Hello,

    I am looking for some help with autocorrelation in excel. I have historical data for past 3 years in weekly time intervals. I am interested to find the autocorrelation btw 1st week of each month / 1st week of each quarter. I tried to get this in Minitab but wasn't able to analyze the data.

    Please help/advise.

    Thanks,
    Naveen G D

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1