Previous Page | Next Page

The MIANALYZE Procedure

STDERR Statement
STDERR variables ;

The STDERR statement lists standard errors associated with effects in the MODELEFFECTS statement, when the input DATA= data set contains both parameter estimates and standard errors as variables in the data set.

With the STDERR statement, only continuous effects are allowed in the MODELEFFECTS statement. The specified standard errors correspond to parameter estimates in the order in which they appear in the MODELEFFECTS statement.

For example, you can use the following MODELEFFECTS and STDERR statements to identify both the parameter estimates and associated standard errors in a SAS data set:

   proc mianalyze;
      modeleffects y1-y3;
      stderr sy1-sy3;
   run;
Previous Page | Next Page | Top of Page