Getting Started Example 9 for PROC RELIABILITY
/****************************************************************/
/* S A S S A M P L E L I B R A R Y */
/* */
/* NAME: RELGS9 */
/* TITLE: Getting Started Example 9 for PROC RELIABILITY */
/* PRODUCT: QC */
/* SYSTEM: ALL */
/* KEYS: reliability, lifetime data */
/* PROCS: RELIABILITY */
/* DATA: */
/* */
/* SUPPORT: sasgjj */
/* REF: PROC RELIABILITY, INTRODUCTORY EXAMPLE 9. */
/* MISC: */
/****************************************************************/
data binex;
input board sample fail;
datalines;
1 84 2
2 72 3
3 72 5
4 119 19
5 538 21
6 51 2
7 517 9
8 462 18
9 143 2
;
proc print data=Binex;
run;
proc reliability data=Binex;
distribution binomial;
analyze fail(sample) = board / predict(1000)
tolerance(.05);
run;