Previous Page | Next Page

The RELIABILITY Procedure

Secondary Statements

You can specify the following statements in conjunction with the primary statements listed previously. These statements are used to modify the behavior of the primary statements or to specify additional variables.

BY variables ;
CLASS variables ;
DISTRIBUTION distribution-name ;
FMODE keyword = variable(’value1’ ...’valuen’) ;
FREQ variable ;
INSET keyword-list </ options> ;
MAKE ’table’ OUT=SAS-data-set < options> ;
NENTER variable ;
UNITID variable ;

The BY statement specifies variables in the input data set that are used for BY processing. A separate analysis is performed for each group of observations defined by the levels of the BY variables. The input data set must be sorted in order of the BY variables.

The CLASS statement specifies variables in the input data set that serve as indicator, dummy, or classification variables in the MODEL statement.

The DISTRIBUTION statement specifies a probability distribution name for those statements that require a probability distribution for proper operation (the ANALYZE, PROBPLOT, MODEL, and RELATIONPLOT statements). If you do not specify a distribution with the DISTRIBUTION statement, the normal distribution is used.

The FMODE statement specifies what failure-mode data to include in the analysis of data. Use this statement in conjunction with the ANALYZE, MODEL, PROBPLOT, or RELATIONPLOT statement.

The FREQ statement specifies a variable that provides frequency counts for each observation in the input data set.

The INSET statement specifies what information is printed in the inset box created by the PROBPLOT or MCFPLOT statement. The INSET statement also controls the appearance of the inset box.

The MAKE statement creates a SAS data set from any of the tables produced by the procedure. You specify a table and a SAS data set name for the data set you want to create. There is a unique table name that identifies each table printed; see the tables in the section MAKE Statement.

The NENTER statement specifies interval-censored data having a special structure; these data are called readout data. Use the NENTER statement in conjunction with the FREQ statement.

The UNITID statement specifies a variable in the input data set that is used to identify each individual unit in an MCFPLOT statement.

Previous Page | Next Page | Top of Page