Welcome State space notation Functions > summary.ssm
Last update Jul 10, 2004

DESCRIPTION:

Prints a summary of the most important features of the state space model specified by ssm.

USAGE:

      summary(ssm)

REQUIRED ARGUMENTS:

ssm:
An object of class ssm.

OPTIONAL ARGUMENTS:

None.

VALUE:

Print a list of the most important features of the specified state space model.

SIDE EFFECTS:

None.

DETAILS:

None.

REFERENCES:

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(0.8,0,0,0),ncol=2,byrow=T)},
          Wt = function(i,x,phi)  
                       {diag(2)/2},
          m0 = c(0,0),
          C0 = diag(10,2),
          nt = rep(10,50),
          fam = "binomial",
          link = "logit")

# Produce summary of the specified model
summary(ss)