Hi,
I am trying to find out how to retrieve the time series of estimated residuals (or innovations) of the components of an unobserved components model, using the SAS UCM procedure.
I CAN retrieve the residuals for the irregular component of the measurement equation.
The other components, such as level, slope, cycle and autoreg components, are also estimated with error.
I can retrieve the estimates of the components OK, but I can't see how to retrieve the full time series of the residuals for each component.
Is it possible to do so? Perhaps they are not identified?
I'm using SAS 9.4. See code snippet below.
Andrew
proc ucm data=LFData printall;
id date interval= quarter;
model u;
irregular;
level;
slope;
cycle;
estimate plots=panel;
run;