सटीक समीकरण इसमें दिए गए हैं: वेनबल्स, डब्ल्यूएन और रिप्ले, बीडी (2002) एस चौथा संस्करण के साथ आधुनिक एप्लाइड सांख्यिकी। स्प्रिंगर-वर्लग। मैं आपको एक उदाहरण दूंगा:
### simulate some data with AR(1) where rho = .75
xi <- 1:50
yi <- arima.sim(model=list(ar=.75), n=50)
### get residuals
res <- resid(lm(yi ~ xi))
### acf for lags 1 and 2
cor(res[1:49], res[2:50]) ### not quite how this is calculated by R
cor(res[1:48], res[3:50]) ### not quite how this is calculated by R
### how R calculates these
acf(res, lag.max=2, plot=F)
### how this is calculated by R
### note: mean(res) = 0 for this example, so technically not needed here
c0 <- 1/50 * sum( (res[1:50] - mean(res)) * (res[1:50] - mean(res)) )
c1 <- 1/50 * sum( (res[1:49] - mean(res)) * (res[2:50] - mean(res)) )
c2 <- 1/50 * sum( (res[1:48] - mean(res)) * (res[3:50] - mean(res)) )
c1/c0
c2/c0
और इतने पर (जैसे, res[1:47]
और res[4:50]
अंतराल 3 के लिए)।
R
सूत्र का और विश्लेषण किया गया है और उसे आँकड़े.स्टैकएक्सचेंज . com / questions / 81754/… पर समझाया गया है ।