/* The dataset has the formats below permanently assigned to certain variables. We do NOT need to rerun the DATA step used to assign the formats however we DO need to resubmit the PROC FORMAT so SAS will know the translations used */ PROC FORMAT; VALUE GDR 1 = "Male" 2 = "Female"; VALUE YN 1 = "Yes" 2 = "No"; VALUE EXER 1 = "High" 2 = "Moderate" 3 = "Low"; VALUE TREAT 1 = "Ran" 2 = "Sat"; VALUE BMI_TWO 1 = "< 25" 2 = "25+"; VALUE BMI_FOUR 1 = "< 18.5" 2 = "[18.5, 25)" 3 = "[25, 30)" 4 = "30+"; RUN; /* We now add a few skills to our PROC REG code*/ /* The PLOTS=DIAGNOSTICS(UNPACK) will provide the 9 graphs individually instead of together in the panel */ /* the CLB option provides confidence intervals for the parameters (estimated intercept and estimated slope) */ PROC REG DATA=BIO.PULSE_STEP4 PLOTS=DIAGNOSTICS(UNPACK); MODEL WEIGHT = HEIGHT / CLB ; RUN;