SAS Syntax - Keyword Model
MODEL | { Dependent var. list } = { Independent var. list and design } |
[/ [ { NOINT } { INT } { INTERCEPT } | |
[ { SS1 } { SS2 } { SS3 } { SS4 } ] | |
[ SINGULAR = Value] ]; |
Example. MODEL DV1 DV2 = | SEQUENCE + PERSON(SEQUENCE) + |
TREATMNT + SEQUENCE*TREATMNT/ | |
SS1 INT SINGULAR =.00001; |
Required keyword; specify the dependent variable list, the model, and any options.
- SAS syntax model specifications
- Following the model statement is an equation, specifying the list of dependent variables on the left-hand side of the equal sign, and the design for the predictor variables on the right-hand side. The conventions for specifying designs (the right-hand side of the equation) are identical to those described for the GLM syntax DESIGN keyword.
- Options
- The following options (specifications) are available for the MODEL keyword (default settings are shown in italic font):
Including or excluding the intercept: { NOINT } { INT } { INTERCEPT }
Types of hypotheses (SS decomposition): { SS1 } { SS2 } { SS3 } { SS4 }
Constant for checking matrix singularity: [ SINGULAR = Value] ];
- Applies to
- GLM (SAS syntax is only available for GLM)
Copyright © 2021. Cloud Software Group, Inc. All Rights Reserved.