Previous Page | Next Page

The SGPLOT Procedure

Example 3: Adding Prediction and Confidence Bands to a Regression Plot


Procedure features: REG statement
Sample library member: GSGPLREG

[GSGPLREG - Adding Prediction and Confidence Bands to a Regression Plot]

This example shows a regression plot with prediction and confidence limits.

 Note about code
proc sgplot data=sashelp.class;
  reg x=height y=weight / CLM CLI;
run;

Previous Page | Next Page | Top of Page