statsmodels.tsa.statespace.initialization.Initialization.unset#

Initialization.unset(index)[source]#

Unset initialization for states, either globally or for a block

Parameters:
indextuple or int or None

Arguments used to create a slice of states. Can be a tuple with (start, stop) (note that for slice, stop is not inclusive), or an integer (to select a specific state), or None (to select all the states).

Notes

Note that this specifically unsets initializations previously created using set with this same index. Thus you cannot use index=None to unset all initializations, but only to unset a previously set global initialization. To unset all initializations (including both global and block level), use the clear method.