Welcome State space notation Functions > kal.fil.po.id
Last update Jul 10, 2004

DESCRIPTION:

Extended Kalman filter for Poisson data assuming identity link and linear Gaussian latent process. The specific model is
Observation equation:
(yt | ht)
~
Po(mt),
Link function:
mt
=
FtTqt,
System equation:
qt
=
Gtqt-1 + wt,
    wt
~
Np(0,Wt),
Initial prior:
q0
~
Np(m0,C0).

USAGE:

      kal.fil.po.id(ssm)

REQUIRED ARGUMENTS:

ssm:
Object of class ssm (state space model).
The following attributes must be specified in ssm:
Yt:
1 × n vector containing the Poisson observations.
Ft:
Function returning a p × 1 design vector.
Gt:
Function returning a p × p evolution transfer matrix.
Wt:
Function returning a p × p evolution variance matrix.
m0:
p × 1 vector (prior mean).
C0:
p × p matrix (prior variance).

OPTIONAL ARGUMENTS:

The following attributes of the ssm object might be needed:
Xt:
Matrix containing the covariates needed in Ft, Gt and/or Wt. This matrix must have n rows, such that row t contains the covariates needed for generating the system matrices at time t.
psi:
Parameter vector must be supplied if it is needed in the calculation of the system matrices.
The following attributes of the ssm object are optional:
fam:
Tacitly assumed to have value Poisson.
link:
Tacitly assumed to have value identity.
m.start:
Used to specify the Taylor expansion points. These are not meant to be set by the user. Applying the Kalman smoother on a ssm object that has been filtered will set the m.start attribute to the smoothed states. This is needed in the iterated extended Kalman filter and smoother.

VALUE:

Returns an object of class ssm with the same attributes as the object in the call, but with attribute filtered updated with:
mt:
Posterior means mt given the observations up to and including time t. These are arranged row-wise in a matrix.
Ct:
Posterior variances Ct given the observations up to and including time t. These are arranged in a 3-dimensional array such that Ct is placed in filtered$Ct[,,t].
llh:
Log-likelihood of of the approximating Gaussian state space model.
Rt:
Prior variances for the states arranged in 3-dimensional array such that Rt is placed in filtered$Rt[,,t]. The reason for returning these is that they are needed in the Kalman smoother.

SIDE EFFECTS:

None

DETAILS:

The filter works by sequentially approximating the Poisson observation density with a Gaussian density based on a Taylor expansion around the values supplied in the attribute m.start of the ssm object. If m.start is not supplied, the Taylor expansion will be around the one-step forecast mean of the observation.

REFERENCES:

Durbin & Koopman, (2002), Time Series Analysis by State Space Models, Oxford Statistical Science Series.
Fahrmeir & Tutz, (1994), Multivariate Statistical Modelling Based on Generalized Linear Models, Springer Series in Statistics.
Klein, (2003), State Space Models for Exponential Family Data, Ph.D. Thesis, Department of Statistics, University of Southern Denmark.

EXAMPLES:

# Specify a state space model
ss <- ssm(Ft = function(i,x,phi)  
                       {c(1,1)},
          Gt = function(i,x,phi)  
                       {matrix(c(1,0,0,0),ncol=2,byrow=T)},
          Wt = function(i,x,phi)  
                       {diag(2)},
          m0 = c(15,0),
          C0 = diag(10,2),
          fam = "Poisson",
          link = "identity")

# Simulate Poisson observations
ss <- simulate.ssm(ss, n=50)

# Apply the extended Kalman filter
ss <- kal.fil.po.id(ss)

# Produce plots of the mean
plot(apply(ss$filtered$mt,1,sum), ylim=c(0,max(ss$Yt)), type="l")
lines(ss$simulated$lambda, lty=2)
points(ss$Yt, pch=16)
legend(0,max(ss$Yt),legend=c("Filtered mean",
                             "Simulated mean","Yt"), 
       lty=c(1,2,-1), marks=c(-1,-1,16))
title("Results from kal.fil.po.id")