SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 50516: Multiple comparison (ADJUST=) results in the SurvDiff table might be incorrect for stratified tests

DetailsCodeOutputHotfixAboutRate It

When you specify a multiple-comparison adjustment with the ADJUST= option and stratified tests with the GROUP= option in the STRATA statement in PROC LIFETEST, the results in the SurvDiff table might be incorrect. Depending on how the TEST= option is specified, the logrank test results or the Wilcoxon test results might be substituted incorrectly. The problem occurs if both of these conditions are met:

  • the ADJUST= option is used with the GROUP= option in the STRATA statement
  • the logrank test and the Wilcoxon test are not requested

There are no errors or warnings to indicate a problem.


To work around the problem, include the logrank and Wilcoxon tests in one of these two ways:

  • explicitly: TEST=(LOGRANK WILCOXON <optional additional tests>)
  • implicitly: TEST=ALL

    Using TEST=ALL includes the logrank and Wilcoxon tests.

EXAMPLE

Suppose you specify the following STRATA statement in your PROC LIFETEST code.

    strata clinic / group=dose_grp  test=(Peto) adjust=BON;

In this case, PROC LIFETEST incorrectly uses the results of the overall logrank test to compute the multiple comparisons for the PETO test in the SurvDiff table. The HomTests table is correct. To work around the problem, specify TEST=ALL, or include the logrank and Wilcoxon tests explicitly.

Workaround 1

    strata clinic / group=dose_grp  test=ALL adjust=BON;

Workaround 2

    strata clinic / group=dose_grp  test=(logrank Wilcoxon Peto) adjust=BON;


Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemSAS/STATz/OS9.2 TS1M09.4 TS1M1
Microsoft® Windows® for 64-Bit Itanium-based Systems9.2 TS1M0
Microsoft Windows Server 2003 Datacenter 64-bit Edition9.2 TS1M0
Microsoft Windows Server 2003 Enterprise 64-bit Edition9.2 TS1M0
Microsoft Windows XP 64-bit Edition9.2 TS1M0
Microsoft® Windows® for x649.2 TS1M09.4 TS1M1
Microsoft Windows Server 2003 Datacenter Edition9.2 TS1M0
Microsoft Windows Server 2003 Enterprise Edition9.2 TS1M0
Microsoft Windows Server 2003 Standard Edition9.2 TS1M0
Microsoft Windows XP Professional9.2 TS1M0
Windows Vista9.2 TS1M0
Windows Vista for x649.2 TS1M0
64-bit Enabled AIX9.2 TS1M09.4 TS1M1
64-bit Enabled HP-UX9.2 TS1M09.4 TS1M1
64-bit Enabled Solaris9.2 TS1M09.4 TS1M1
HP-UX IPF9.2 TS1M09.4 TS1M1
Linux9.2 TS1M09.4 TS1M1
Linux for x649.2 TS1M09.4 TS1M1
OpenVMS on HP Integrity9.2 TS1M09.4 TS1M1
Solaris for x649.2 TS1M09.4 TS1M1
* 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.