Top Banner
State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12. Harvey, A.C. (1989), Forecasting. Structural Time Series Models and the Kalman Filter. Cambridge University Press. A. Pole, M. West, and P.J. Harrison (1994), Applied Bayesian Forecasting and Time Series Analysis. Chapman-Hall, New York. M. West and P.J. Harrison (1997, First edition 1989), Bayesian Forecasting and Dynamic Models. Springer-Verlag, New York. 1
49

State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Feb 06, 2018

Download

Documents

hahuong
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

State Space Models and the

Kalman Filter

References:

RLS course notes, Chapter 7.

Brockwell and Davis, Chapter 12.

Harvey, A.C. (1989), Forecasting. Structural Time Series Modelsand the Kalman Filter. Cambridge University Press.

A. Pole, M. West, and P.J. Harrison (1994), Applied BayesianForecasting and Time Series Analysis. Chapman-Hall, NewYork.

M. West and P.J. Harrison (1997, First edition 1989), BayesianForecasting and Dynamic Models. Springer-Verlag, New York.

1

Page 2: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Basic equations:

Xt = FtSt + vt,

St = GtSt−1 + wt,

vt ∼ N [0, Vt],

wt ∼ N [0,Wt],

where

• Xt is (multivariate) observation process

• St is unobserved “state” process

• Ft, Gt, Vt, Wt in principle known, though may have to be

estimated in practice.

2

Page 3: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Why consider such models?

• All ARMA or ARIMA models may be rewritten as state space

models

• Extends to multivariate case automatically

• Many nonstationary or seasonal models...

• Natural formulation of Bayesian approach

3

Page 4: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Solution by Kalman Filter

Note on terminology:

A state space model is in principle any model that includes an

observation process Xt and a state process St. The equations

may be nonlinear, or non-Gaussian.

The Kalman Filter is a particular algorithm that is used to solve

state space models in the linear case. This was first derived by

Kalman (1960).

Some people refer to “Kalman filter models” but in my view this

is imprecise terminology.

4

Page 5: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Bayesian derivation of the Kalman Filter

Follows Meinhold and Singpurwalla (1983).

We use the following fact familiar from multivariate analysis:

If (Y1Y2

)∼ MVN

[(µ1µ2

)(Σ11 Σ12Σ21 Σ22

)]then

Y1 | Y2 = y2 ∼ MVN[µ1 + Σ12Σ−1

22 (y2 − µ2),Σ11 −Σ12Σ−122 Σ21

].

5

Page 6: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Let X t denote all information available up to time t (the σ-algebra

generated by Xs, s ≤ t). Suppose

St−1 | X t−1 ∼ MVN [St−1, Pt−1].

But St = GtSt−1 + wt so

St | X t−1 ∼ MVN [GtSt−1, Rt], Rt = GtPt−1GTt +Wt.

Then(StXt

)| X t−1 ∼ MVN

[(GtSt−1FtGtSt−1

),

(Rt RtF

Tt

FtRt FtRtFTt + Vt

)].

Hence

St | Xt,X t−1

∼ MVN [GtSt−1 +RtFTt (FtRtF

Tt + Vt)

−1(Xt − FtGtSt−1),

Rt −RtFTt (FtRtFTt + Vt)

−1FtRt].

6

Page 7: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Thus we have the recursive equations

St = GtSt−1 +RtFTt (FtRtF

Tt + Vt)

−1(Xt − FtGtSt−1),

Pt = Rt −RtFTt (FtRtFTt + Vt)

−1FtRt.

Issues:

• Initiation of S0, P0

• Prediction and smoothing: estimate St given X1, ..., XT . t >

T is prediction problem, 1 ≤ t < T is smoothing problem.

• Estimation: assume parametric forms, Ft = Ft(ψ) etc. De-fine likelihood function using prediction error decomposition

f(X1, ..., XT | ψ) =T∏t=1

f(Xt | X t−1).

In fact, the modern derivation of exact MLE for ARMA pro-cesses is based on this approach.

7

Page 8: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Application to Financial Time Series

Let yt be day-t return. GARCH(1,1) model:

yt = εtσt, εt ∼ N [0,1], σ2t = α0 + α1y

2t−1 + β1σ

2t−1.

Alternatively, the simplest case of a stochastic volatility model

Direct estimation by MLE possible.

yt = εteht/2, ht+1 = γ0 + γ1ht + ηt, ηt ∼ N [0, Ht].

Solution by Monte Carlo/Bayesian methods (focus of current

Sequential Monte Carlo program at SAMSI).

Also generalized method of moments (GMM) approaches popular

among econometricians.

8

Page 9: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Long-Range Dependence

References:

Brockwell and Davis, Section 13.2

J. Beran (1994), Statistics for Long-Memory Processes. Chap-

man and Hall, New York.

P. Doukhan, M.S. Taqqu and G. Oppenheim (eds.) (2003),

Long-Range Dependence. Birkhauser, Boston.

9

Page 10: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

The covariance function of any causal invertible ARMA process

satisfies

|γk| ≤ Ark, some r ∈ [0,1).

Long-range dependence is concerned with processes that satisfy

γk ∼ Ck2d−1, some C > 0, d. (1)

Stationary and invertible if d ∈(−1

2,12

).

Note that∑|γk| =∞ though

∑γ2k <∞

Also write H = d+ 12 where H is Hurst coefficient

d = 0 or H = 12 correspond to standard short-range (including

ARMA processes)

10

Page 11: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

History

Hurst (1951) first proposed this model (with H ≈ 0.7) based on

a study of hundreds of years of flood volumes of the River Nile.

Mandelbrot (c. 1968) proposed a model of Fractional Brownian

Motion: a Gaussian process with the self-similarity property

Yct ≡ cHYt, t ∈ (−∞,∞)

for any fixed c > 0. Differences of FBM are called Fractional

Gaussian Noise.

Current applications include environmental (e.g. climatic) data,

finance, internet traffic and many others.

11

Page 12: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Fractional Differencing

Introduced independently by Granger and Joyeux (1980) andHosking (1981).

(I −B)dYt ∼ ARMA(p, q)

that has a covariance satisfying (1). Here we interpret

(I −B)dYt =

{I − dB +

d(d− 1)

2!B2 −

d(d− 1)(d− 2)

3!B3 + ...

}Yt

= Yt − dYt−1 +d(d− 1)

2!Yt−2 −

d(d− 1)(d− 2)

3!Yt−3 + ...

The case p = q = 0 is fractionally integrated noise. Its spectraldensity and autocorrelation function are given by

f(λ) = |1− e−iλ|−2dσ2

2π=

(2 sin

λ

2

)−2d σ2

2π,

ρk =Γ(k + d)Γ(1− d)

Γ(k − d+ 1)Γ(d)

12

Page 13: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Estimation

Assume general form of model ARIMA(p, d, q) though some of

the methods are designed to work in more general cases, e.g.

f(λ) = |1− e−iλ|−2df0(λ) with f0 a bounded spectral density.

1. Maximum Likelihood

2. Spectral Methods

3. Wavelet Methods

13

Page 14: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Maximum Likelihood Approach (see Brockwell and Davis)

In principle can write down exact likelihood for ARMA(p, d, q)processes, treating the autoregressive parameter φ, the movingaverage parameter θ and the fractional differencing parameter das unknown parameters ψ = (φ, θ, d).

Classical asymptotics of MLE hold in this situation (but it’s veryhard to prove that!

In practice often use Whittle approximation

logL ≈ −∑j

{log f(λj;ψ) +

I(λj)

f(λj;ψ)

}

where {λj} are Fourier frequencies, I is periodogram and f isspectral density.

This has same asymptotic properties as exact MLE.

14

Page 15: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Spectral Approach

We know f(λ) ∼ Cλ−2d for λ near 0. Rewrite as

log f(λ) ≈ logC − 2d logλ. (2)

Suggests trying to fit (2) directly.

First approach: Geweke–Porter-Hudak (1983) proposed an OLS

regression of log I(λj) on logλj, first m Fourier frequencies, some

m << T2 .

Second approach: Minimize

m∑j=1

log(Cλ−2dj ) +

I(λj)

Cλ−2dj

.Now known as Local Whittle Estimator following seminal paper

of P.M. Robinson (1995).

15

Page 16: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Wavelets Approach

Won’t go into details but this may be the best approach overall.

See several papers of Peter Craigmile (Ohio State), also Vladas

Pipiras of UNC.

16

Page 17: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Hurricanes and Global Warming

What this is about:

A problem related to climate change that involves some very

challenging applications of time series analysis!

Acknowledgements to Thomas Knutson (NOAA/GFDL) and Evan-

gelos Evangelou (UNC).

17

Page 18: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

18

Page 19: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

19

Page 20: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

20

Page 21: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Some Basic Facts About Hurricanes

(From a presentation by Kevin Trenberth)

• SSTs > 26oC (80oF)

• High water vapor

• Weak wind shear

• Weak static stability

• Pre-existing disturbance

Also:

Large variability from year to year

El Nino means more activity in Pacific, less in Atlantic

Large interdecadal variability in Atlantic (AMO)

21

Page 22: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Source: Presentation by Kevin Trenberth

22

Page 23: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

• Hurricanes play a key role in climate, but are not in models

and are not parameterized

• Competition between thunderstorms and convection, but these

are not resolved and are treated as sub-grid-scale phenomena

• Climate models have premature onset of convection

• Result: Existing models are likely to underpredict hurricanes

23

Page 24: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

This analysis compares two reconstructions of the TC series

(Vecchi and Knutson)

• One-encounter: Assumes a single encounter between a mod-

ern storm and a historical ship track is sufficient to count the

storm as one that would have been observed historically

• Two-encounter: Similar, but requires two ship × storm en-

counters

The “two-encounter” model applies a stronger correction to the

historical record

24

Page 25: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

1880 1900 1920 1940 1960 1980 2000

510

1520

25

Tropical Cyclones by Year(Data by Vecchi and Knutson)

Year

Tro

pica

l Cyc

lone

s

One−encounterTwo−encounter

*

**

****

*

*

*

**

*

***

****

***

*

*

*

**

*

*

**

*****

*

*

********

*

*

****

**

*

*

*

*

***

**

****

***

****

***

****

*

*

*

**

*

***

*

**

*****

*

****

**

**

**

***

****

*

*

*

*****

**

*

*

*

**

****

*

*

*

**

*

***

****

***

*

*

*

**

*

*

**

****

*

*

*

**

******

*

*

****

**

*

*

*

*

***

**

****

***

****

***

****

*

*

*

**

*

***

*

**

*****

*

****

**

**

**

***

****

*

*

*

*****

**

*

*

25

Page 26: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

1850 1900 1950 2000

−0.

50.

00.

51.

0Three Reconstructions of SST

Year

SS

T A

nom

aly

ReynoldsKaplanHadley

*****

*****

*****

******

**

************

**

*****

*

******

***********

***

*

**

******

****

******

****

*

**************

********************

******

******

****

****

******

**

***

******

*

*

*

*

*****

*

*****

**

**

****

**

**

*

*

*

*

*

*

*

**

*

*

****

*

********

*

*

*

*

*

******

**

**

**

***

*

**

*

*

*

**

*

**

*

**

****

***

*

*

*

**

*****

**

***

*

*

***

**

*

*****

**

***

*

**

*

****

*

**

*

**

**

*

******

*

*

******

*****

*

*

*

*

*

********

***

*******

*

*

*

******

****

**********

**

***

******

****

***

*

*

*

**

*

****

*****

*

*

***

**

*

**

***

*

*

*

**

*

***

****

*

*

*

*

*

*

*

*

***

26

Page 27: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

1850 1900 1950 2000

−2

01

23

4Trends of TC Counts and SSTs

Year

Nor

mal

ized

Tre

nd

TC (1−enc)

TC (2−enc)

SST (Reynolds)

SST (Kaplan)

SST (Hadley)

AMO

27

Page 28: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Trends in hurricane counts are similar to those in TCs but the

data are much sparser

US landfalling hurricanes show no trend or a slight decrease but

this can be explained as a sampling effect

28

Page 29: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Linear and Nonlinear Trends in Three Series

29

Page 30: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

• One analysis is a simple bivariate time series analysis of TCs

and SSTs

• Apply square root transformation to TCs to normalize vari-

ances

• After prewhitening both series, lag-0 cross-correlation is 0.27

with a p-value of about .002

30

Page 31: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 1

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 1 x Series 2

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 2 x Series 1

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 2

31

Page 32: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 1

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 1 x Series 2

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 2 x Series 1

0 5 10 15 20

−1.

0−

0.5

0.0

0.5

1.0

Series 2

32

Page 33: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Why Linear Trends?

The gold standard for this kind of analysis is detection and attri-

bution analysis (D&A), which is a statistical technique devised

by climatologists that is used to apportion an observed climate

signal as a combination of different forcing factors.

33

Page 34: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Outline of D&A Method

• Use a climate model to generate “signals” under different

forcing factors. The main forcing factors used in practice are

(a) greenhouse gases, (b) atmospheric particles (aerosols),

(c) solar fluctuations, (d) volcanoes.

• Perform a multiple regression analysis to decompose the ob-

served climate signal as a linear combination of the model

signals. The details of this analysis are quite complicated,

because the signals have dimension ≈ 5000.

• If the coefficient due to greenhouse gases is statistically sig-

nificant, we say the greenhouse gas signal is “detected”. If

this condition is satisfied, the regression coefficients are then

interpreted as an “attribution” of the observed signal over

different forcing factors.

34

Page 35: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

This method has been applied many times to temperature se-

ries, and more recently to rainfall. However there are difficulties

applying it to hurricane data, because hurricanes are not well

reproduced by climate models.

• Conflicting evidence from climate models, e.g. the GFDL

model suggests a levelling off of hurricane activity as SST

increases (Knutson) but the NCAR model suggests the op-

posite conclusions (Trenberth)

• In the absence of an agreed definition of the “greenhouse

gas signal”, we use a linear trend as an approximation.

• The idea is to decompose observed SST and hurricane/storm

counts as a combination of linear trend and long-term fluc-

tuations (AMO)

35

Page 36: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Trends Fitted to Tropical Cyclones

Period ARMA Trend SE Trend/SE p-value1878–2006 (0,0) 0.018 0.0094 1.94 0.0551878–2006 (9,2) 0.022 0.022 0.97 0.331900–2006 (0,0) 0.049 0.012 4.11 8× 10−5

1900–2006 (9,4) 0.050 0.020 2.54 0.011

36

Page 37: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

1880 1900 1920 1940 1960 1980 2000

510

1520

25

Tropical Cyclones with TrendsOLS and ARMA Regression

Year

TC

Cou

nt

*

**

****

*

*

*

**

*

***

****

***

*

*

*

**

*

*

**

*****

*

*

********

*

*

****

**

*

*

*

*

***

**

****

***

****

***

****

*

*

*

**

*

***

*

**

*****

*

****

**

**

**

***

****

*

*

*

*****

**

*

*

37

Page 38: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Bivariate Time Series Model

xt: SST average in year t

yt: square root TC count in year t

Model:(xtyt

)=

(β0,0β1,0

)+

(β0,1β1,1

)t+

(wtzt

),(

wtzt

)=

p∑j=1

(a0,0,j a0,1,ja1,0,j a1,1,j

)(wt−jzt−j

)+

(εt,0εt,1

),

(εt,0εt,1

)∼ N

[(00

),

(σ0,0 σ0,1σ1,0 σ1,1

)].

Calculate β1,1 and its standard error.

38

Page 39: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Selection of AR order p

p AIC0 –219.71 –240.82 –236.83 –230.24 –222.55 –228.56 –223.87 –219.88 –217.29 –211.9

10 –218.4

Conclusion: p = 1 seems best

39

Page 40: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Trend Coefficient β1,1 and p-value

Start One-encounter Two-encounterYear Trend p-value Trend p-value1878 .20 .25 .14 .401890 .51 .006 .43 .021900 .71 .0005 .61 .0021910 .99 .00003 .88 .00021920 .86 .003 .78 .0071930 .43 .17 .35 .271940 .45 .20 .35 .321950 .78 .08 .74 .101960 1.58 .006 1.55 .0071970 2.22 .008 2.22 .0081980 4.21 .002 4.21 .002

Still get different results corresponding to the start time

40

Page 41: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Questions About This Approach

There are clear signs of “unit root” behavior. I tried fitting mul-

tivariate ARMA models (in SAS - PROC VARMAX) but these

generally don’t converge, because of unit root difficulties.

For the hurricane series on its own, ARMA models fit much

better than AR, but still difficulties with AIC and similar measures

(indicative of non-stationarity?)

I also tried fractionally differenced processes but this doesn’t

seem to resolve the issues either.

41

Page 42: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Current Approach — Conditional ARMA

Recall

xt: SST in year t

yt: square root TC in year t

Also let Tt denote some modeled trend (initially linear, but later

we consider alternatives)

Model:

xt = α0 + α1Tt + ut (ut ARMA)

ut = xt − α0 − α1Tt, (residuals)

yt = β0 + β1Tt + β2ut + β3ut−1 + β4ut−2 + vt (vt ARMA)

42

Page 43: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

First attempt: Tt linear

Use TC1 dataset (“1-encounter”), Hadley SSTARMA(1,1) for utARMA(7,2) for vt

Focus on coefficient of trend in yt (β1 parameter), various startyears ending in 2005

Start Year β1 SE t ratio p value1880 1.18 0.93 1.28 0.201890 1.66 0.87 1.92 0.051900 2.19 0.84 2.62 0.011910 3.14 0.93 3.36 0.001920 2.68 0.99 2.71 0.011930 1.71 1.08 1.59 0.111940 2.87 1.97 1.46 0.141950 3.38 2.23 1.52 0.131960 6.41 2.51 2.55 0.011970 8.28 3.00 2.76 0.01

43

Page 44: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Conclusions from this analysis

The results are not a big advance on fitting linear trends without

involving SST (cp. Vecchi-Knutson 2008)

We find significant linear trends from starting times near the

bottom of the AMO (e.g. 1900, 1960), but not from others

such as 1880, 1940.

No clear-cut conclusion of an anthropogenic trend.

44

Page 45: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Second attempt: Tt based on a GCM

We use 20th Century runs from seven climate models (N.B. one

run from each, though in several cases there are multiple model

runs available)

Compute mean temperature over 0–60 oN and 7.5–75 oW as

proxy for North Atlantic SST

Apply spline smoother to remove local variation

Also plot mean of all 7 models

45

Page 46: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

1880 1900 1920 1940 1960 1980 2000

288

289

290

291

292

293

294

295

Year

Tem

p (K

)

CCCCSIROGFDLGISS

MPICCSM3HADCM3Mean

SST 20th Century Model Projections

46

Page 47: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

We fit same model using smoothed mean of seven GCMs as Tt

This time use AR(1) for ut, AR(5) for vt.

Start Year β1 SE t ratio p value1880 1.39 0.50 2.78 0.0051890 1.70 0.47 3.66 0.00031900 1.82 0.47 3.85 0.00011910 1.96 0.50 3.90 0.00011920 1.81 0.54 3.34 0.00081930 1.37 0.50 2.74 0.0061940 1.98 0.65 3.05 0.0021950 2.08 0.64 3.26 0.0011960 2.43 0.64 3.81 0.00011970 2.56 0.52 4.95 10−6

Conclusion: a statistically significant trend (p < 0.01) from all

starting times

47

Page 48: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Other Statistical Issues

• This analysis assumes TCs and SSTs are normal after taking

square route transformations of SSTs — ignores the fact that

TCs are counts

• Possible alternative model based on Poisson counts

• Existing literature (Elsner, Tsonis, Jagger) has used Bayesian

MCMC methods to create hierarchical model

• We are looking at an alternative approach extending Davis’s

and Dunsmuir’s GLARMA modeling approach (Evangelou, in

progress)

48

Page 49: State Space Models and the Kalman Filterrls/s754/finalclass.pdf · State Space Models and the Kalman Filter References: RLS course notes, Chapter 7. Brockwell and Davis, Chapter 12.

Conclusions

• Simple bivariate time series analysis shows strong cross-correlationbetween TCs and SSTs, but this could be a by-product ofAMO — not directly indicative of anthropogenic trend

• Simple linear trend analysis shows conflicting conclusions —results highly sensitive to start time, analysis ignores inter-dependence between TCs and SSTs

• Preferred analysis takes both time series and trend effectsinto consideration

• Correlating observed time series with trends from climatemodels seems most effective approach. However, there arestill arguments about the data.

49