public class ARMAMaxLikelihoodEx1 extends Object
Fits an ARMA(2,1) to the Wolfer sunspot data using the method of maximum likelihood.
Consider the Wolfer Sunspot Data (Anderson 1971, p. 660) consisting of the number of sunspots observed each year from 1749 through 1924. The data set for this example consists of the number of sunspots observed from 1770 through 1869. The ARMA(2,1) model can be expressed as
zt=θ0+ϕ1zt−1+ϕ2zt−2−θ1At−1+At
where the errors At are independently normally distributed with mean zero and variance σ2A.
The maximum likelihood estimates
ˆθ0,ˆϕ1,ˆϕ2,andˆθ1
fromARMAMaxLikelihood
are compared to the same estimates using
the method of moments and least squares from the ARMA
class. For
each method, the coefficients and forecasts for the last ten years,
1860-1869, are compared. The method of moments and maximum likelihood
estimates produced similar results, but the least squares estimates were very
different from the other two.Constructor and Description |
---|
ARMAMaxLikelihoodEx1() |
Copyright © 2020 Rogue Wave Software. All rights reserved.