statsmodels.tsa.statespace.representation.FrozenRepresentation¶
- class statsmodels.tsa.statespace.representation.FrozenRepresentation(model)[source]¶
Frozen Statespace Model
Takes a snapshot of a Statespace model.
- Parameters:¶
- model : Representation¶
A Statespace representation
- k_posdef¶
The dimension of a guaranteed positive definite covariance matrix describing the shocks in the measurement equation.
- shapes¶
A dictionary recording the shapes of each of the representation matrices as tuples.
- Type:¶
dictionary of name:tuple
- missing¶
An array of the same size as endog, filled with boolean values that are True if the corresponding entry in endog is NaN and False otherwise.
- nmissing¶
An array of size nobs, where the ith entry is the number (between 0 and k_endog) of NaNs in the ith row of the endog array.
- initial_state_cov¶
The state covariance matrix used to initialize the Kalamn filter.
- Type:¶
array_like
Methods
update_representation(model)Update model Representation