Previous Page | Next Page

The QLIM Procedure

OUTPUT Statement

OUTPUT <OUT=SAS-data-set> <output-options> ;
The OUTPUT statement creates a new SAS data set containing all variables in the input data set and, optionally, the estimates of , predicted value, residual, marginal effects, probability, standard deviation of the error, expected value, conditional expected value, and inverse Mills ratio. When the response values are missing for the observation, all output estimates except residual are still computed as long as none of the explanatory variables is missing. This enables you to compute these statistics for prediction. You can specify only one OUTPUT statement.

Details on the specifications in the OUTPUT statement are as follows:

CONDITIONAL

output estimates of conditional expected values of continuous endogenous variables.

ERRSTD

output estimates of , the standard deviation of the error term.

EXPECTED

output estimates of expected values of continuous endogenous variables.

MARGINAL

output marginal effects.

MILLS

output estimates of inverse Mills ratios of censored or truncated continuous, binary discrete, and selection endogenous variables.

OUT=SAS-data-set

names the output data set.

PREDICTED

output estimates of predicted endogenous variables.

PROB

output estimates of probability of discrete endogenous variables taking the current observed responses.

PROBALL

output estimates of probability of discrete endogenous variables for all possible responses.

RESIDUAL

output estimates of residuals of continuous endogenous variables.

XBETA

output estimates of .

Previous Page | Next Page | Top of Page