|
Subject: | XploRe: Learning Guide |
See XploRe: |
Quantlet: | times02 | |
Description: | Quantlets for computing and plotting the autocovariance function and partial autocovariance function. | |
Download: | times02.xpl |
library("times") randomize(0) y = normal(500) ; ; quantlets acf, acfplot ; x = acf(y) x[1:5] acfplot(y) ; ; quantlets pacf, pacfplot ; x = pacf(y,5) x[1:5] pacfplot(y)
Subject: | XploRe: Learning Guide |
See XploRe: |