Previous Page | Next Page

The PROBIT Procedure

Syntax: PROBIT Procedure

The following statements are available in PROC PROBIT:

PROC PROBIT <options> ;
MODEL response=independents </ options> ;
BY variables ;
CLASS variables ;
OUTPUT <OUT=SAS-data-set> <options> ;
WEIGHT variable ;
CDFPLOT <VAR = variable> <options> ;
INSET <keyword-list> </ options> ;
IPPPLOT <VAR = variable> <options> ;
LPREDPLOT <VAR = variable> <options> ;
PREDPPLOT <VAR = variable> <options> ;

A MODEL statement is required. Only a single MODEL statement can be used with one invocation of the PROBIT procedure. If multiple MODEL statements are present, only the last one is used. Main effects and higher-order terms can be specified in the MODEL statement, as in the GLM procedure. If a CLASS statement is used, it must precede the MODEL statement.

The CDFPLOT, INSET, IPPPLOT, LPREDPLOT, and PREDPPLOT statements are used to produce graphical output. You can use any appropriate combination of the graphical statements after the MODEL statement.

Previous Page | Next Page | Top of Page