/****************************************************************/ /* E S E G S A M P L E L I B R A R Y */ /* */ /* NAME: PrAllGrS */ /* TITLE: Print all defect data for generic docs of PBR exper.*/ /* PRODUCT: BASE SAS */ /* SYSTEM: */ /* KEYS: PRINT */ /* PROCS: PRINT */ /* DATA: AllGrSub.dat */ /* DATA SET DESCRIPTION: The data set contains the values for */ /* both the independent and dependent variables of the PBR */ /* experiment. The data are limited to the generic documents */ /* There is a row for each subject with related repeated */ /* measures. */ /* Independent variables: */ /* subj subject identifier; */ /* run experimental run (PILOT, 1995); */ /* grp GROUP1 = usual technique with ATM */ /* PBR technique with PG */ /* GROUP2 = usual technique with PG */ /* PBR technique with ATM */ /* prsp perspective used by PBR reviewers */ /* yexp subject experience in the assigned */ /* perspective: number of years */ /* Dependent variables: */ /* usutdrt true defect rate with usual tech; */ /* pbrtdrt true defect rate with PBR tech */ /* atmtdrt true defect rate with ATM doc; */ /* pgtdrt true defect rate with PG doc */ /* */ /* PURPOSE OF PROGRAM: Show the variables and the values to */ /* verify there is no data entry error */ /* REF: */ /* MISC: */ /* */ /****************************************************************/ options ls=78 ps=60 nodate nonumber; data allgrsu; infile 'AllGrSub.dat'; input subj $ run $ grp $ prsp $ yexp usutdrt pbrtdrt atmtdrt pgtdrt; proc print data=allgrsu; var subj run grp prsp yexp usutdrt pbrtdrt ; run; proc print data=allgrsu; var subj run grp prsp yexp atmtdrt pgtdrt; run;