MODEL response <*censor (list)> = <effects> </ options>;
The MODEL statement specifies the response variables and the effects (explanatory variables). If you omit the explanatory variables, PROC RMSTREG fits an intercept-only model. An intercept term is included in the model by default. You can omit the intercept by specifying the NOINT option.
The name of the failure time variable precedes the equal sign. This name can optionally be followed by an asterisk, the name of the censoring variable, and a list of censoring values (separated by blanks or commas if there is more than one) enclosed in parentheses. If the censoring variable takes one of these values, the corresponding failure time is considered to be censored. Following the equal sign are the explanatory effects (sometimes called independent variables or covariates) for the model.
The censoring variable must be numeric, and the failure time variables must contain nonnegative values. Any observation that has a negative failure time is excluded from the analysis, as is any observation that has a missing value for any of the variables listed in the MODEL statement. Failure time variables in a SAS date format are not recommended, because the dates might be translated into negative numbers and consequently the corresponding observation would be discarded.
The effects in the MODEL statement consist of an explanatory variable or combination of variables. Explanatory variables can be continuous or classification variables. Classification variables can be character or numeric. Explanatory variables that represent nominal (classification) data must be declared in a CLASS statement. Interactions between variables can also be included as effects. Columns of the design matrix are automatically generated for classification variables and interactions. The syntax for specifying effects is the same as in the GLM procedure. For more information, see the section Specification of Effects in Chapter 53, The GLM Procedure.
Table 6 summarizes the options available in the MODEL statement.
Table 6: MODEL Statement Options
| Option | Description |
|---|---|
| ALPHA= | Sets the confidence coefficient |
| CONVERGE= | Sets the convergence criterion |
| CONVH= | Sets the relative Hessian convergence criterion |
| CORRB | Displays the parameter estimate correlation matrix |
| COVB | Displays the parameter estimate covariance matrix |
| LINK= | Specifies the link function |
| MAXITER= | Sets the maximum allowable number of iterations for all iterative computation processes |
| METHOD= | Specifies the estimation method for model fitting |
| NOFIT | Suppresses model fitting |
| NOINT | Excludes the intercept term from the model |
You can specify the following options after a slash (/).