SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 62128: PROC SSM might return incorrect results if the TYPE=LL option is specified in the STATE statement

DetailsHotfixAboutRate It

When fitting a model with a local linear trend, PROC SSM returns incorrect results under these conditions:

  • The local linear trend is specified in a STATE statement with the TYPE=LL option, and
  • the SLOPECOV suboption is explicitly specified and is a function of parameters defined in the PARMS statement, and
  • the shape of the SLOPECOV specification is different from the shape of the COV spec. The shapes can be defined as I, D or G.

The following example illustrates three PROC SSM steps that model a local linear trend. The first two PROC SSM steps return correct results. However, the third PROC SSM step encounters the problem. In the third case, the SLOPECOV suboption is defined in terms of OMEGA, which is a function of the LOMEGA parameter listed in the PARMS statement. Also, the shape of SLOPECOV is defined as D, whereas the shape of COV is not defined.

proc ssm data=test plots=none;
  title "Correct Result";
  id time;
  state reg(1) type=LL(slopecov(d));
  comp line = reg[1];
  irregular wn;
  model y = line wn;
run;
proc ssm data=test plots=none;
  title "Correct Result";
  parms lomega;
  omega = exp(lomega);
  id time;
  state reg(1) type=LL(slopecov(d)=(omega)) cov(d)=(0);
  comp line = reg[1];
  irregular wn;
  model y = line wn;
run;
proc ssm data=test plots=none;
  title "Incorrect Result";
  parms lomega;
  omega = exp(lomega);
  id time;
  state reg(1) type=LL(slopecov(d)=(omega));
  comp line = reg[1];
  irregular wn;
  model y = line wn;
run;
To circumvent the problem, make sure to include a COV specification with the same shape as the SLOPECOV specification anytime the SLOPECOV suboption is a function of one or more model parameters. To do this, you might have to artificially add zeros, ones, or some other (known) constants to the SLOPECOV and COV specifications, as shown in the second example above where the diagonal elements of COV are set to 0.
 

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS/ETSz/OS14.19.4 TS1M3
z/OS 64-bit14.19.4 TS1M3
Microsoft® Windows® for x6414.19.4 TS1M3
Microsoft Windows 8 Enterprise 32-bit14.19.4 TS1M3
Microsoft Windows 8 Enterprise x6414.19.4 TS1M3
Microsoft Windows 8 Pro 32-bit14.19.4 TS1M3
Microsoft Windows 8 Pro x6414.19.4 TS1M3
Microsoft Windows 8.1 Enterprise 32-bit14.19.4 TS1M3
Microsoft Windows 8.1 Enterprise x6414.19.4 TS1M3
Microsoft Windows 8.1 Pro 32-bit14.19.4 TS1M3
Microsoft Windows 8.1 Pro x6414.19.4 TS1M3
Microsoft Windows 1014.19.4 TS1M3
Microsoft Windows Server 200814.19.4 TS1M3
Microsoft Windows Server 2008 R214.19.4 TS1M3
Microsoft Windows Server 2008 for x6414.19.4 TS1M3
Microsoft Windows Server 2012 Datacenter14.19.4 TS1M3
Windows 7 Ultimate 32 bit14.19.4 TS1M3
Microsoft Windows Server 2012 R2 Datacenter14.19.4 TS1M3
Microsoft Windows Server 2012 R2 Std14.19.4 TS1M3
Microsoft Windows Server 2012 Std14.19.4 TS1M3
Windows 7 Enterprise 32 bit14.19.4 TS1M3
Windows 7 Enterprise x6414.19.4 TS1M3
Windows 7 Home Premium 32 bit14.19.4 TS1M3
Windows 7 Home Premium x6414.19.4 TS1M3
Windows 7 Professional 32 bit14.19.4 TS1M3
Windows 7 Professional x6414.19.4 TS1M3
Windows 7 Ultimate x6414.19.4 TS1M3
64-bit Enabled AIX14.19.4 TS1M3
64-bit Enabled Solaris14.19.4 TS1M3
HP-UX IPF14.19.4 TS1M3
Linux for x6414.19.4 TS1M3
Solaris for x6414.19.4 TS1M3
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.