Hi SAS Friends,
Am looking for examples of how to use the PROC SEQDESIGN procedure when adding an interim FUTILITY analysis only to a study design. All examples seen so far in the SAS PROC SEQDESIGN Manual and meeting papers include an interim analysis for efficacy with a futility analysis added. However none with futility alone.
For example, the following code:
proc seqdesign pss stopprob errspend ;
onesidedtwostage: design nstages=2 info=cum(.6 1) alt=upper
alpha=0.025 beta=.20
method(reject)=errfuncobf /* INTERIM EFFICACY BOUNDARY */
METHOD(ACCEPT)=ERRFUNCOBF STOP=BOTH ; /* INTERIM FUTILITY BOUNDARY */
samplesize model=twosamplefreq(nullprop=.5 prop=.70 ref=nullprop test=prop);
title1 "Stopping early for futility " ;
run;
The above code generates efficacy and futility boundaries, however if the efficacy line is deactivated (as /*method(reject)=errfuncobf */) then the code will not run and the following error is produced:
ERROR: Methods for all boundaries must be specified in the DESIGN statement if more than one
stage is specified.
Any suggestions how produce an interim futility analysis only, using the above code, or any SAS code, would be greatly appreciated.
Thank you !
R