autocorrelation function (ACF)

  • Thread starter Thread starter Rado Lavrih
  • Start date Start date
R

Rado Lavrih

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
 
Rado Lavrih -
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. <

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
 
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
 
Thanks Jerry! Works fine!

Bye


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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top