Shared Concepts and Topics

EFFECT Statement

This section applies to the following procedures: GLIMMIX, GLMSELECT, HPMIXED, LOGISTIC, ORTHOREG, PHREG, PLS, QUANTLIFE, QUANTREG, QUANTSELECT, ROBUSTREG, SURVEYLOGISTIC, and SURVEYREG.

The EFFECT statement enables you to construct special collections of columns for design matrices. These collections are referred to as constructed effects to distinguish them from the usual model effects that are formed from continuous or classification variables, as discussed in the section GLM Parameterization of Classification Variables and Effects. For example, the terms A, B, x, A*x, A*B, and sub in the following statements define fixed, random, and subject effects of the usual type in a mixed model:

proc glimmix;
   class A B sub;
   model y = A B x A*x;
   random A*B / subject=sub;
run;

A constructed effect, on the other hand, is assigned through the EFFECT statement. For example, in the following program, the EFFECT statement defines a constructed effect named spl:

proc glimmix;
   class A B SUB;
   effect spl = spline(x);
   model y = A B A*spl;
   random A*B / subject=sub;
run;

The columns of spl are formed from the data set variable x as a cubic B-spline basis with three equally spaced interior knots.

Each constructed effect corresponds to a collection of columns that are referred to by using the name you supply. You can specify multiple EFFECT statements, and all EFFECT statements must precede the MODEL statement.

The general syntax for the EFFECT statement with effect-specification is

EFFECT effect-name = effect-type (var-list < / effect-options >) ;

The name of the effect is specified after the EFFECT keyword. This name can appear in only one EFFECT statement and cannot be the name of a variable in the input data set. The effect-type is specified after an equal sign, followed by a list of variables within parentheses which are used in constructing the effect. Effect-options that are specific to an effect-type can be specified after a slash (/) following the variable list. The following effect-types are available and are discussed in the following sections:

COLLECTION

specifies a collection effect that defines one or more variables as a single effect with multiple degrees of freedom. The variables in a collection are considered as a unit for estimation and inference.

LAG

specifies a classification effect in which the level that is used for a particular period corresponds to the level in the preceding period.

MULTIMEMBER | MM

specifies a multimember classification effect whose levels are determined by one or more variables that appear in a CLASS statement.

POLYNOMIAL | POLY

specifies a multivariate polynomial effect in the specified numeric variables.

SPLINE

specifies a regression spline effect whose columns are univariate spline expansions of one or more variables. A spline expansion replaces the original variable with an expanded or larger set of new variables.

Table 12 summarizes the options available in the EFFECT statement.

Table 12: EFFECT Statement Options

Option Description
Collection Effects Options
DETAILS Displays the constituents of the collection effect
Lag Effects Options
DESIGNROLE= Names a variable that controls to which lag design an observation is assigned
DETAILS Displays the lag design of the lag effect
NLAG= Specifies the number of periods in the lag
PERIOD= Names the variable that defines the period. This option is required.
WITHIN= Names the variable or variables that define the group within which each period is defined. This option is required.
Multimember Effects Options
NOEFFECT Specifies that observations with all missing levels for the multimember variables should have zero values in the corresponding design matrix columns
WEIGHT= Specifies the weight variable for the contributions of each of the classification effects
Polynomial Effects Options
DEGREE= Specifies the degree of the polynomial
MDEGREE= Specifies the maximum degree of any variable in a term of the polynomial
STANDARDIZE= Specifies centering and scaling suboptions for the variables that define the polynomial
Spline Effects Options
BASIS= Specifies the type of basis (B-spline basis or truncated power function basis) for the spline effect
DEGREE= Specifies the degree of the spline effect
KNOTMETHOD= Specifies how to construct the knots for the spline effect


Last updated: December 09, 2022